Programmazione Tradestation qualcuno che sappia tradurre da visual trader a tradestation ? (1 Viewer)

riccardo69

Forumer attivo
scrivi il codice che ci provo io.

eccolo

HTML:
Var:mom,media,periodo(160),  MioTRADINGWEEK_M10,
    ValTakeRitracc(50),
    ValStop(100);


MioTRADINGWEEK_M10 = TRADINGWEEK_M1(C, 6, 1, 5, 6, 5, 2);
mom=momentum(C,periodo,D);
media=mov(c,periodo,e);

InstallTrailingProfit(INTICK, 250, ValTakeRitracc,"stop1",checkmax+exitonlyifcloseon);
InstallStopLoss(INTICK, ValStop);

if positiondir=0 and V>V[1]  then
   if mom>0 and C>media and c> MioTRADINGWEEK_M10 then
      enterlong(nextbar,atopen);
   endif;
   if mom<0 and C<media and c< MioTRADINGWEEK_M10 then
      entershort(nextbar,atopen);
   endif;
endif;

if positionlong and mom<0 then
   exitlong(nextbar,atopen);
endif;

if positionshort and mom>0 then
   exitshort(nextbar,atopen);
endif;
 

saratoga09

Nuovo forumer
eccolo

HTML:
Var:mom,media,periodo(160),  MioTRADINGWEEK_M10,
    ValTakeRitracc(50),
    ValStop(100);
 
 
MioTRADINGWEEK_M10 = TRADINGWEEK_M1(C, 6, 1, 5, 6, 5, 2);
mom=momentum(C,periodo,D);
media=mov(c,periodo,e);
 
InstallTrailingProfit(INTICK, 250, ValTakeRitracc,"stop1",checkmax+exitonlyifcloseon);
InstallStopLoss(INTICK, ValStop);
 
if positiondir=0 and V>V[1]  then
   if mom>0 and C>media and c> MioTRADINGWEEK_M10 then
      enterlong(nextbar,atopen);
   endif;
   if mom<0 and C<media and c< MioTRADINGWEEK_M10 then
      entershort(nextbar,atopen);
   endif;
endif;
 
if positionlong and mom<0 then
   exitlong(nextbar,atopen);
endif;
 
if positionshort and mom>0 then
   exitshort(nextbar,atopen);
endif;

tradingweek è un indicatore prioprietario di vt di cui dovresti conoscerne la formula per poterlo dapprima inserire in tradestion e successivamente costruirci attorno un ts.
 

riccardo69

Forumer attivo
tradingweek è un indicatore prioprietario di vt di cui dovresti conoscerne la formula per poterlo dapprima inserire in tradestion e successivamente costruirci attorno un ts.


Tradingweek-M1 utilizza la seguente formula:

MM1=mov (c,6,a);
MAC=macd (c,5,6);
OPM=op (MM1,MAC,add);
MM2=mov (OPM,5,e);
TRADINGWEEK
-M1=op (MM2,MAC,add);
 

Users who are viewing this thread

Alto