NexusFi: Find Your Edge


Home Menu

 





How to limit the number of buys per day when operating on short time frames?


Discussion in EasyLanguage Programming

Updated
    1. trending_up 1,854 views
    2. thumb_up 3 thanks given
    3. group 2 followers
    1. forum 4 posts
    2. attach_file 0 attachments




 
Search this Thread

How to limit the number of buys per day when operating on short time frames?

  #1 (permalink)
TornadoES
Madrid, Spain
 
Posts: 7 since Feb 2016
Thanks Given: 7
Thanks Received: 1

Hi everyone!

I am developing a system for the E-mini S&P and I am having some troubles limiting the number of trades per day. I have searched in the forum and i have found that there are some functions and reserved words such as entriestoday or entrydate which could be useful to limit the number of trades per day. However, they are limited to 10 positions ago and I would like to set the maximum number of buys to 25 or 30 per day.

Has anyone made a script that sets a limit on how many buys or trades can be traded per day? Anyone could give me some advice on how I could do it?

Thanks in advance.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
Better Renko Gaps
The Elite Circle
REcommedations for programming help
Sierra Chart
What broker to use for trading palladium futures
Commodities
How to apply profiles
Traders Hideout
 
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,629


TornadoES,

use a simple counter. Each time your signal enters a new position, you increment the counter. When you evaluate your entry conditions you use this counter to check that it's smaller than the number of trades per day that you allow.
On the first tick of the new day you reset the counter. This should get you what you want while being more flexible.

Regards,

ABCTG

Follow me on Twitter Reply With Quote
Thanked by:
  #4 (permalink)
TornadoES
Madrid, Spain
 
Posts: 7 since Feb 2016
Thanks Given: 7
Thanks Received: 1

I have tried to code a counter following your instructions but it seems like it doesn't limit the buys. Here is my code, maybe i have committed some mistakes and that is why it doesn't work well.

Inputs: length(20),Distance(2);

Vars: HigherBand(0),LowerBand(0),av(0),cont(0), apertura(0), cierre(0);

HigherBand = Average(c,length) + Distance*stdDev(c,length);
LowerBand = Average(c,length) - Distance*stdDev(c,length);
av = average(c,length);

cont = 0;
apertura = 1530;
cierre = 2200;

If higherband > lowerband and apertura <= time and time <= cierre then begin

if marketposition = 0 and cont <= 25 then begin
Buy ("compra") next bar at LowerBand limit;
cont = cont + 1;
end;

if marketposition = 1 and H >= av then begin
Sell next bar at Higherband limit;
end;
end;

If cierre > time then cont = 0;

Reply With Quote
  #5 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,629

TornadoES,

you reset the counter on every code cycle and not just on the first tick of the day. The second thing I noticed is that you increment the counter when you send the order, but as you use a limit order you will run into situations where you increment the counter although the signal didn't enter.

Regards,
ABCTG

Follow me on Twitter Reply With Quote
Thanked by:




Last Updated on March 22, 2016


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts