SuperTrend & Regressione Lineare - Signal - Thalos

Collapse
X
 
  • Ora
  • Show
Clear All
new posts
  • Andrea Cagalli
    Senior Member
    • Oct 2010
    • 3995

    #1

    SuperTrend & Regressione Lineare - Signal - Thalos

    Buy Script:
    Codice:
    INPUTS: @periods(10), @strength(1),@price(close), @regression(21)
    SET A = SuperTrend(@periods, @strength)
    SET PLOTCOLOR1 = IF(A > CLOSE, COLOR_LIGHT_RED, COLOR_LIGHT_GREEN)
    set Reg = Forecast(@price, @regression)
    CROSSOVER(CLOSE, A)
    CROSSOVER(Reg, A)
    Sell Script:
    Codice:
    SET A = SuperTrend(@periods, @strength)
    SET PLOTCOLOR1 = IF(A > CLOSE, COLOR_LIGHT_RED, COLOR_LIGHT_GREEN)
    set Reg = Forecast(@price, @regression)
    CROSSOVER(A, CLOSE)
    CROSSOVER(A,Reg)
    Manuale beeTrader
Working...