Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Study Non Aggiornare Stop 2 Modi Per Realizzarlo //
- // Lo Short Del 2ndo Modo Non Funziona Ci Deve Essere Un Bug Non Sullo Study Ma Sullo Stretegy !!! //
- //https://www.youtube.com/watch?v=-J9tuRhe3-U&t=78s
- // ------------------------------------ INIZIO STUDY NON AGGIORNARE STOP 1 MODO ------------------------------------ //
- plot1(highd(0), "highd0");
- plot2(lowd(0), "lowd0");
- // ------------------------------------ FINE STUDY NON AGGIORNARE STOP 1 MODO ------------------------------------ //
- // ------------------------------------ INIZIO PRINT PER STRATEGIE NON AGGIORNARE STOP 1 MODO ------------------------------------ //
- //print(highd(0), "highd0");
- //print(lowd(0), "lowd0");
- // ------------------------------------ FINE PRINT PER STRATEGIE NON AGGIORNARE STOP 1 MODO ------------------------------------ //
- // ------------------------------------ INIZIO STUDY NON AGGIORNARE STOP 2 MODO ------------------------------------ //
- // Lo Short Del 2ndo Modo Non Funziona Ci Deve Essere Un Bug Non Sullo Study Ma Sullo Stretegy !!! //
- // Long
- {var: myStop(0), MP(0);
- MP = I_Marketposition;
- plot1(MP);
- if MP[1] = 0 and MP = 1 then
- myStop = lowd(0);
- plot2(myStop);}
- // Short
- {var: myStop(0), MP(0);
- MP = I_Marketposition;
- plot1(MP);
- if MP[1] = 0 and MP = -1 then
- myStop = highd(0);
- plot3(myStop);}
- // ------------------------------------ FINE STUDY NON AGGIORNARE STOP 2 MODO ------------------------------------ //
- // ------------------------------------ INIZIO PRINT PER STRATEGIE NON AGGIORNARE STOP 2 MODO ------------------------------------ //
- {var: myStopLong(0), myStopShort(0), MP(0);
- MP = Marketposition;
- // Long
- if MP[1] = 0 and MP = 1 then
- myStopLong = lowd(0);
- if MP[1] = 0 and MP = 0 then
- myStopLong = 0;
- print(myStopLong);
- // Short
- if MP[1] = 0 and MP = -1 then
- myStopShort = highd(0);
- if MP[1] = 0 and MP = 0 then
- myStopShort = 0;
- print(myStopShort);}
- // ------------------------------------ FINE PRINT PER STRATEGIE NON AGGIORNARE STOP 2 MODO ------------------------------------ //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement