NexusFi: Find Your Edge


Home Menu

 





Breakout strategy daily range issue


Discussion in EasyLanguage Programming

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




 
Search this Thread

Breakout strategy daily range issue

  #1 (permalink)
soacm
Bucharest, Romania
 
Posts: 71 since Mar 2022
Thanks Given: 38
Thanks Received: 22

I tried to code a strategy based on the Open Range Breakout using the previous daily range as a reference: Buy the Open + 0.50 of the previous daily range.
I noticed that on Mondays, the previous daily range (Friday in this case) is not taken into consideration, and the strategy sometimes executes the trade but not at the predefined 0.50 value.

 
Code
inputs: MyPerc(0.5), StartTime(300), EndTime(600);

vars: MaxSetup(0), MinSetup(0), MyRange(0);

   MyRange =  highd(1) - lowd(1);
   MaxSetup = opend(0) + MyRange*MyPerc;
   MinSetup = opend(0) - MyRange*MyPerc;

// Entries Long only
if
close < MaxSetup                                            and
EntriesToday(date[0]) < 1                                   and 
Time > StartTime                                            and 
Time < EndTime                                              then 

begin 
   Buy next bar at MaxSetup on Stop;
end;

setexitonclose;
Note: I tried to define MyRange with High[1] of Data2 - Low[1] of Data2 since Data2 are daily bars, but the same issue persists, thank you.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Increase in trading performance by 75%
The Elite Circle
Better Renko Gaps
The Elite Circle
How to apply profiles
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
REcommedations for programming help
Sierra Chart
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
34 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
15 thanks
GFIs1 1 DAX trade per day journal
15 thanks
Vinny E-Mini & Algobox Review TRADE ROOM
13 thanks
  #2 (permalink)
toucan94506bm
danville ca usa
 
Posts: 73 since Aug 2015
Thanks Given: 48
Thanks Received: 75

are you trading futures... if you are then any reference to yesterday on monday will reference sunday's open where the futures market opens sunday afternoon... so on monday, yesterday is sunday, not friday.

cheers
toucan

Reply With Quote
Thanked by:
  #3 (permalink)
abev
seattle washington
 
Posts: 75 since Feb 2019
Thanks Given: 11
Thanks Received: 29


Yeah, I agree with toucan, it's the time. Depending upon what you are trading you may find success with StartTime(0930), EndTime(1600).

Reply With Quote
Thanked by:




Last Updated on June 5, 2022


© 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