brunoctm :
Guys, i have this indicator on pineeditor with very few lines. Could anyone convert to .ex5 please?
//@version=1
study("Trading_Plan", overlay = true)
RP = 1*atr(20)
GAIN = 2*atr(20)
plot(high+RP, color=blue, style=line, linewidth=2)
plot(low-RP, color=blue, style=line, linewidth=2)
plot(high+GAIN, color=green, style=line, linewidth=2)
plot(low-GAIN, color=green, style=line, linewidth=2)
More or less like this:

?
You rock dude
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register

Guys, i have this indicator on pineeditor with very few lines. Could anyone convert to .ex5 please?
//@version=1