Two Minor Changes Increased Net Profit % #52
thouravi
started this conversation in
Community settings
Replies: 2 comments 1 reply
-
thank you |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey,
I tested your strategy and on changing two values, it increased
on 4H BTC/USDT Binance.
Change 1: Line 73
Before - 27
short_RSI = input.float(27, 'Exit SRSI Short (%)', minval=0.0, step=1, group='Strategy 2: Stoch RSI')
My Change - 21
short_RSI = input.float(21, 'Exit SRSI Short (%)', minval=0.0, step=1, group='Strategy 2: Stoch RSI')
Change 2: Line 92
Before - 88
MA2_period_5 = input.int(88, 'MA 2', minval=1, maxval=9999, step=1, group='Strategy 5: MA CROSS')
My Change - 85
MA2_period_5 = input.int(85, 'MA 2', minval=1, maxval=9999, step=1, group='Strategy 5: MA CROSS')
Change 3 - Line 42
Before
MAX_TP = input.int(6, 'Max number of TP', minval=1, maxval=6, group='Take Profits')
My Change
MAX_TP = input.int(3, 'Max number of TP', minval=1, maxval=6, group='Take Profits')
Change 4 - Line 36
Before
stoploss_perc= input.float(6.0, 'Stop Loss %', minval=0, maxval=100, group='Stop loss') * 0.01
My Change
stoploss_perc= input.float(8, 'Stop Loss %', minval=0, maxval=100, group='Stop loss') * 0.01
Let me know what do you think, my username on TradingView is ImThour.
Let's have a chat, cheers.
Beta Was this translation helpful? Give feedback.
All reactions