clm1966
9th December 2003, 07:02 PM
Column A
EntryTrigger:= Fml( "sysentry upvolprice2") OR Fml(
"sysentry upvolprice") ;
EntryPrice:= OPEN;
ExitTrigger:= Fml( "sysexit turtle") ;
ExitPrice := CLOSE;
ExtFml("TradeSim.Initialize");
ExtFml("TradeSim.EnableDelayOfEntryByOneBar");
ExtFml("TradeSim.EnableDelayOfAllExitsByOneBar");
ExtFml("TradeSim.EnableProtectiveStop",0);
ExtFml("TradeSim.EnableTradePyramiding",
PercentProfit,3,5);
Volatility:=HHV(H,22)-(3*ATR(22));
ExtFml( "TradeSim.TrailingStop",TRIGGER,
LONG,Volatility,C,L);
ExtFml( "TradeSim.SetStopGapPriceToOpen");
ExtFml("TradeSim.RecordTrades",
"upvolprice", {Trade Data Filename}
LONG,{ Trade Position Type }
EntryTrigger,{ Entry Trigger }
EntryPrice, { Entry Price }
0.93*CLOSE,{ Optional Initial Stop }
ExitTrigger,{ Exit Trigger }
ExitPrice,{ Exit Price }
START);{ Recorder Control }
Filter
ExtFml( "TradeSim.GetSymbolLength")=4
I am having a couple issues with Tradesim Pro 3.4
beta, running on a win98 machine.Above is the system I am
testing with. loading 1300 records.
First issue:
Problem with GetSymbolLength.
1. deleted prior version of "upvolprice"
2. Ran Exploration.
3. Opened "upvolprice" in tradesim.
4. When I open the "trade database manager" I notice
some symbols have a length of 3 where I expected only
4 characters symbols too record.
5 When I run a simulation, 3 character and 4 character
trades are recorded in the trade log.
Second issue:
I have "EnableTradePyramiding" but only see "zero"
level trades recorded in the tradelog.
Some of the trades in the trade log have Greater than
3% gain and I thought a second level
trade in the same ticker would occur at that point. I
have tried the 4 "Position Size Models".
Both "Pyramid Profits", and "Pyramid Trades" are
selected. On preferences, "Favor Trade Pyramids" is
selected.
Not sure what I am overlooking.
Thanks,
Chris
EntryTrigger:= Fml( "sysentry upvolprice2") OR Fml(
"sysentry upvolprice") ;
EntryPrice:= OPEN;
ExitTrigger:= Fml( "sysexit turtle") ;
ExitPrice := CLOSE;
ExtFml("TradeSim.Initialize");
ExtFml("TradeSim.EnableDelayOfEntryByOneBar");
ExtFml("TradeSim.EnableDelayOfAllExitsByOneBar");
ExtFml("TradeSim.EnableProtectiveStop",0);
ExtFml("TradeSim.EnableTradePyramiding",
PercentProfit,3,5);
Volatility:=HHV(H,22)-(3*ATR(22));
ExtFml( "TradeSim.TrailingStop",TRIGGER,
LONG,Volatility,C,L);
ExtFml( "TradeSim.SetStopGapPriceToOpen");
ExtFml("TradeSim.RecordTrades",
"upvolprice", {Trade Data Filename}
LONG,{ Trade Position Type }
EntryTrigger,{ Entry Trigger }
EntryPrice, { Entry Price }
0.93*CLOSE,{ Optional Initial Stop }
ExitTrigger,{ Exit Trigger }
ExitPrice,{ Exit Price }
START);{ Recorder Control }
Filter
ExtFml( "TradeSim.GetSymbolLength")=4
I am having a couple issues with Tradesim Pro 3.4
beta, running on a win98 machine.Above is the system I am
testing with. loading 1300 records.
First issue:
Problem with GetSymbolLength.
1. deleted prior version of "upvolprice"
2. Ran Exploration.
3. Opened "upvolprice" in tradesim.
4. When I open the "trade database manager" I notice
some symbols have a length of 3 where I expected only
4 characters symbols too record.
5 When I run a simulation, 3 character and 4 character
trades are recorded in the trade log.
Second issue:
I have "EnableTradePyramiding" but only see "zero"
level trades recorded in the tradelog.
Some of the trades in the trade log have Greater than
3% gain and I thought a second level
trade in the same ticker would occur at that point. I
have tried the 4 "Position Size Models".
Both "Pyramid Profits", and "Pyramid Trades" are
selected. On preferences, "Favor Trade Pyramids" is
selected.
Not sure what I am overlooking.
Thanks,
Chris