ajellis
17th March 2004, 04:44 PM
I just transplanted the exact same Tradesim exploration from my laptop, which works fine, to my desktop. I used the import function, and have manually checked that the exploration formula is the same.
My desktop records no trades. I imported three explorations and none of them records a single trade for tradesim.
I checked the report from the exploration and sure enough, the laptop shows a few signals, the desktop none.
I can't figure out why this is happening. Can you see something missing?
This is the exploration (which works on the laptop but not the desktop)
delay:=1;
LongEntryTrigger:=
When(C>Mov(C,40,E)) AND
When(C,>,Mov(C,40,S))AND When(Ref(C,-1),<,Mov(Ref(C,-1),40,S))AND When((Mov(ROC(C,39,%),26,E)*1)+(Mov(ROC(C,52,%),26 ,E)*2)+(Mov(ROC(C,78,%),26,E)*3)+(Mov(ROC(C,109,%) ,39,E)*4),>,Mov( (Mov(ROC(C,39,%),26,E)*1)+(Mov(ROC(C,52,%),26,E)*2 )+(Mov(ROC(C,78,%),26,E)*3)+(Mov(ROC(C,109,%),39,E )*4),26,E))AND When((Mov(ROC(C,39,%),26,E)*1)+(Mov(ROC(C,52,%),26 ,E)*2)+(Mov(ROC(C,78,%),26,E)*3)+(Mov(ROC(C,109,%) ,39,E)*4),<,0);
LongEntryPrice:=OPEN;
LongExitTrigger:=
L<=(CLOSE-3*ATR(10));
LongExitPrice:=CLOSE-3*ATR(10);
LongInitialStop:=Ref(CLOSE-5*ATR(10),-1);
ExtFml("TradeSim.Initialize");
ExtFml("TradeSim.SetStartRecordDate",1,1,1998);
ExtFml("TradeSim.SetStopRecordDate",12,12,2003);
ExtFml("TradeSim.RecordTrades",
"LT KST Buy",
LONG,
LongEntryTrigger,
LongEntryPrice,
LongInitialStop,
LongExitTrigger,
LongExitPrice,
START)
My desktop records no trades. I imported three explorations and none of them records a single trade for tradesim.
I checked the report from the exploration and sure enough, the laptop shows a few signals, the desktop none.
I can't figure out why this is happening. Can you see something missing?
This is the exploration (which works on the laptop but not the desktop)
delay:=1;
LongEntryTrigger:=
When(C>Mov(C,40,E)) AND
When(C,>,Mov(C,40,S))AND When(Ref(C,-1),<,Mov(Ref(C,-1),40,S))AND When((Mov(ROC(C,39,%),26,E)*1)+(Mov(ROC(C,52,%),26 ,E)*2)+(Mov(ROC(C,78,%),26,E)*3)+(Mov(ROC(C,109,%) ,39,E)*4),>,Mov( (Mov(ROC(C,39,%),26,E)*1)+(Mov(ROC(C,52,%),26,E)*2 )+(Mov(ROC(C,78,%),26,E)*3)+(Mov(ROC(C,109,%),39,E )*4),26,E))AND When((Mov(ROC(C,39,%),26,E)*1)+(Mov(ROC(C,52,%),26 ,E)*2)+(Mov(ROC(C,78,%),26,E)*3)+(Mov(ROC(C,109,%) ,39,E)*4),<,0);
LongEntryPrice:=OPEN;
LongExitTrigger:=
L<=(CLOSE-3*ATR(10));
LongExitPrice:=CLOSE-3*ATR(10);
LongInitialStop:=Ref(CLOSE-5*ATR(10),-1);
ExtFml("TradeSim.Initialize");
ExtFml("TradeSim.SetStartRecordDate",1,1,1998);
ExtFml("TradeSim.SetStopRecordDate",12,12,2003);
ExtFml("TradeSim.RecordTrades",
"LT KST Buy",
LONG,
LongEntryTrigger,
LongEntryPrice,
LongInitialStop,
LongExitTrigger,
LongExitPrice,
START)