Please code for:
Buy: Linear Regression Forecast > Linear Regression Intercept
Sell: Linear Regression Intercept > Linear Regression Forecast
Please code for:
Buy: Linear Regression Forecast > Linear Regression Intercept
Sell: Linear Regression Intercept > Linear Regression Forecast
Buy Script:
Forecast(CLOSE, 30)>Intercept(CLOSE, 30)
Sell Script:
Intercept(CLOSE, 30)>Forecast(CLOSE, 30)
Thank you so much…
hi,
pls correct me!
BUY SCRIPT
A=Forecast(CLOSE, 7)
B=Intercept(CLOSE, 7)
CROSSOVER(A,B)
SELL SCRIPT
A=Forecast(CLOSE, 7)
B=Intercept(CLOSE, 7)
CROSSOVER(B,A)
i wonder if this script is correct ? what needs to done for it to work?
thanks