AlbertoCuadra / algo_trading_weighted_strategy

Algorithmic Trading Weighted Strategy developed in Pine Script for TradingView
Other
207 stars 78 forks source link

Two Minor Changes Increased Net Profit % #25

Closed thouravi closed 2 years ago

thouravi commented 2 years ago

Hey,

I tested your strategy and on changing two values, it increased

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.

thouravi commented 2 years ago

image

277292590 commented 2 years ago

thank you