System Based Trading

oxusmorouz

Well-Known Member
#12
I don't believe that system can be further improved. The equity curve is the smoothest I've seen and drawdowns are restricted significantly. Amazing!
 

oxusmorouz

Well-Known Member
#15
Try this procedure:
1) Go to combined report ---> right click and choose "export combined report"
2) After exporting, attach the txt file in traderji.
 
Last edited:
U

uasish

Guest
#17
Oxy,
Thks.
.........................8.....................
EntryTrigger := Fml( "System ...............") ;
EntryPrice := CLOSE;
ExitTrigger := Fml( ...........) > C ;
ExitPrice := O;
InitialStop := If(Fml( "System - ...........") = 1 ,Ref(L,-1),0);
ExtFml( "TradeSim.Initialize"); { Initialize internal variables }
ExtFml("TradeSim.EnableDelayOfEntryByOneBar");
ExtFml("TradeSim.DisableDelayOfAllExitsByOneBar");
ExtFml("TradeSim.EnableProtectiveStop",0);
ExtFml("TradeSim.SetExitPriceToInitialStop");
ExtFml( "TradeSim.RecordTrades",
"System Asish 1 example", { Trade Data Filename }
LONG, { Trade Position Type }
EntryTrigger, { Entry Trigger }
EntryPrice, { Entry Price }
InitialStop, { Initial Stop }
ExitTrigger, { Exit Trigger }
ExitPrice, { Exit Price }
START); { Trade Recorder Control }
........................................................8...........................
Where is it wrong ? (To enable Protective Stop)

Asish
 

oxusmorouz

Well-Known Member
#18
I think
InitialStop := If(Fml( "System - ...........") = 1 ,Ref(L,-1),0);
can be substitued with something like
InitialStop:= LLV(L,3); {or whatever the period maybe}
or so.

Or maybe the stop wasn't triggered at all and the exits were based on normal system based exits.
 
U

uasish

Guest
#19
Oxy,

How does it effect ? Suppose the system used it's normal exit,can you plz elaborate.
This is the 2nd System for your purview.My computer is getting hanged ,continuously whenever i am trying to generate a portfolio simulation report,do i have to increase the RAM from 256 upwards ?
Here in the 2nd System the population is entire NSE stocks ,period same like earlier,initial capital same & no commission / slippage taken into a/c.

Asish
 

oxusmorouz

Well-Known Member
#20
Oxy,

How does it effect ? Suppose the system used it's normal exit,can you plz elaborate.
This is the 2nd System for your purview.My computer is getting hanged ,continuously whenever i am trying to generate a portfolio simulation report,do i have to increase the RAM from 256 upwards ?
Here in the 2nd System the population is entire NSE stocks ,period same like earlier,initial capital same & no commission / slippage taken into a/c.

Asish
I'm not sure regarding the ram part of it.
Normal exit = exit generated by your system
Protective stop exit = exit when price hits your initial stop

In the 2nd system, there exits no drawdown at all? hmm...since the system has 87% winning trades, the remaining 13% losing trades should result in a drawdown (even though negligible)...I think there is some mistake here...
 

Similar threads