-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GPTProfile] update GPT default profile to use Smart DCA
- Loading branch information
1 parent
f2f8a78
commit 7020495
Showing
7 changed files
with
53 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
20
profiles/gpt_trading/specific_config/DailyTradingMode.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
18
profiles/gpt_trading/specific_config/SimpleStrategyEvaluator.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
22 changes: 0 additions & 22 deletions
22
profiles/gpt_trading/specific_config/TechnicalAnalysisStrategyEvaluator.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters