Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GPTProfile] update GPT default profile to use Smart DCA #1091

Merged
merged 1 commit into from
Oct 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions profiles/gpt_trading/profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"taker": 0.1
},
"starting-portfolio": {
"BTC": 10,
"USDT": 1000
}
},
Expand All @@ -37,7 +36,7 @@
"profile": {
"avatar": "ChatGPT_logo.svg",
"complexity": 2,
"description": "GPT DailyTrading uses ChatGPT to predict the market. It can be used to send alerts according to ChatGPT's predictions and trade directly based on the profile's DailyTradingMode configuration.\nConfigure the GPTEvaluator to customize the way market data are sent to ChatGPT.",
"description": "GPT Smart DCA uses ChatGPT to predict the market. It can be used to trade directly based on the profile's DCA Trading mode configuration.\nConfigure the GPTEvaluator to customize the way market data are sent to ChatGPT and the DCATradingMode to change how entries and exits should be created.",
"id": "gpt_trading",
"imported": false,
"name": "GPT Trading",
Expand Down
26 changes: 26 additions & 0 deletions profiles/gpt_trading/specific_config/DCATradingMode.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"buy_order_amount": "8%t",
"cancel_open_orders_at_each_entry": true,
"default_config": [
"SimpleStrategyEvaluator"
],
"entry_limit_orders_price_percent": 1.3,
"exit_limit_orders_price_percent": 2,
"minutes_before_next_buy": 10080,
"required_strategies": [
"SimpleStrategyEvaluator",
"TechnicalAnalysisStrategyEvaluator"
],
"secondary_entry_orders_amount": "8%t",
"secondary_entry_orders_count": 1,
"secondary_entry_orders_price_percent": 1.3,
"secondary_exit_orders_count": 1,
"secondary_exit_orders_price_percent": 0.5,
"trigger_mode": "Maximum evaluators signals based",
"use_init_entry_orders": false,
"use_market_entry_orders": false,
"use_secondary_entry_orders": true,
"use_secondary_exit_orders": false,
"use_stop_losses": false,
"use_take_profit_exit_orders": true
}
20 changes: 0 additions & 20 deletions profiles/gpt_trading/specific_config/DailyTradingMode.json

This file was deleted.

9 changes: 6 additions & 3 deletions profiles/gpt_trading/specific_config/GPTEvaluator.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"indicator": "No indicator: the raw value of the selected source",
"period": 2,
"source": "Close"
"GPT_model": "gpt-3.5-turbo",
"indicator": "No indicator: raw candles price data",
"max_confidence_threshold": 60,
"min_confidence_threshold": 80,
"period": 20,
"source": "Full candle (For no indicator only)"
}
18 changes: 18 additions & 0 deletions profiles/gpt_trading/specific_config/SimpleStrategyEvaluator.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"background_social_evaluators": [
"RedditForumEvaluator"
],
"default_config": [
"DoubleMovingAverageTrendEvaluator",
"RSIMomentumEvaluator"
],
"re_evaluate_TA_when_social_or_realtime_notification": true,
"required_candles_count": 1000,
"required_evaluators": [
"*"
],
"required_time_frames": [
"4h"
],
"social_evaluators_notification_timeout": 3600
}

This file was deleted.

4 changes: 2 additions & 2 deletions profiles/gpt_trading/tentacles_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"tentacle_activation": {
"Evaluator": {
"GPTEvaluator": true,
"TechnicalAnalysisStrategyEvaluator": true
"SimpleStrategyEvaluator": true
},
"Trading": {
"DailyTradingMode": true
"DCATradingMode": true
}
}
}