piccolo_trader
Nuovo forumer
Faccio sempre qst premessa:Nn capisco niente di programmazione di ts ma oggi con un pò di buona volontà sn riuscito a creare qst ts x spmib nn ha una grande performance xò lo posto cmq...kissa possa essere d' aiuto a qlcn...TimeFrame Giornaliero
{*******************************************************
**** Trading System creato con il Wizard di VT ***
********************************************************}
Var: miavar(0),MioTILLSONT30;
MioTILLSONT30 = TILLSONT3(C, 3, 2, -2);
SECTION_ENTERLONG:
if (MioTILLSONT30 > C) then
EnterLong(NextBar, AtOpen);
endif;
END_SECTION
SECTION_EXITLONG:
if (MioTILLSONT30 < C) then
ExitLong(NextBar, AtOpen);
endif;
END_SECTION
SECTION_ENTERshort:
if (MioTILLSONT30 < C) then
Entershort(NextBar, AtOpen);
endif;
END_SECTION
SECTION_EXITshort:
if (MioTILLSONT30 > C) then
Exitshort(NextBar, AtOpen);
endif;
END_SECTION
{*******************************************************
**** Trading System creato con il Wizard di VT ***
********************************************************}
Var: miavar(0),MioTILLSONT30;
MioTILLSONT30 = TILLSONT3(C, 3, 2, -2);
SECTION_ENTERLONG:
if (MioTILLSONT30 > C) then
EnterLong(NextBar, AtOpen);
endif;
END_SECTION
SECTION_EXITLONG:
if (MioTILLSONT30 < C) then
ExitLong(NextBar, AtOpen);
endif;
END_SECTION
SECTION_ENTERshort:
if (MioTILLSONT30 < C) then
Entershort(NextBar, AtOpen);
endif;
END_SECTION
SECTION_EXITshort:
if (MioTILLSONT30 > C) then
Exitshort(NextBar, AtOpen);
endif;
END_SECTION