How to limit max no of traders EL code

Discussion in 'Strategy Building' started by Rajatheroyal, Jul 22, 2009.

  1. Hi guys i coded one intraday strategy (i am new bie in coding ) i found that if i reduce the number of trades per day the strategy will perform better.Can anybody tell me how to code to limit the maximum number of traders per day in EL.
    say for eg. i dont want to take more than 3 signals per day.
     
  2. Nobody replied:( .Anyways i found it myself we have to put a condition " maxentries < 3" when giving orders.
     
  3. thx for the reply... times seems hard ...
     
  4. if EntriesToday(date) <= XX then begin

    your code

    end;
     
  5. Thank you TrueStory for ur kind help.
     
  6. tradethetrade

    tradethetrade Vendor

    What language is that?
     
  7. Easylanguage:)