NexusFi: Find Your Edge


Home Menu

 





Retrieve first date on an intraday chart


Discussion in EasyLanguage Programming

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




 
Search this Thread

Retrieve first date on an intraday chart

  #1 (permalink)
mandelmus
Dallas, TX
 
Posts: 8 since Jun 2011
Thanks Given: 2
Thanks Received: 3

I applied a strategy to an intraday chart and I want the strategy to run on all days except the very first day loaded on the chart. To do this, I was thinking to add a requirement that the Date must be greater than the first date on the chart, but not sure about the best way to retrieve the first date on the chart.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
MC PL editor upgrade
MultiCharts
Better Renko Gaps
The Elite Circle
How to apply profiles
Traders Hideout
Exit Strategy
NinjaTrader
PowerLanguage & EasyLanguage. How to get the platfor …
EasyLanguage Programming
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
24 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
21 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627


mandelmus,

you could store the date at CurrentBar = 1 in a variable.

Regards,

ABCTG

Follow me on Twitter Reply With Quote
Thanked by:
  #4 (permalink)
mandelmus
Dallas, TX
 
Posts: 8 since Jun 2011
Thanks Given: 2
Thanks Received: 3


ABCTG View Post
mandelmus,

you could store the date at CurrentBar = 1 in a variable.

Regards,

ABCTG

I would like to, but have not found the code to do that. I tried to use the BarNumber with BarDateTime (Reserved Word), but keep getting an error that it "should be declared as elsystem.datetime class".

Reply With Quote
  #5 (permalink)
mandelmus
Dallas, TX
 
Posts: 8 since Jun 2011
Thanks Given: 2
Thanks Received: 3

Ok, just put this together and it looks like it works.

 
Code
Variables:
	FirstDate(0);

If BarNumber = 1 then FirstDate = Date[0];

Plot1(FirstDate,"FDate");

Reply With Quote
Thanked by:
  #6 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

This looks good. Personally I prefer using CurrentBar as this is a reserved word, where BarNumber is a function. The result is the same, but in general every function will slightly slow the code calculation. Although with the barnumber function you won't notice that.

Regards,
ABCTG

Follow me on Twitter Reply With Quote
  #7 (permalink)
mandelmus
Dallas, TX
 
Posts: 8 since Jun 2011
Thanks Given: 2
Thanks Received: 3

I appreciate your help ABCTG. So, using CurrentBar, it would look like this:

 
Code
Variables:
	FirstDate(0);

If CurrentBar = 1 then FirstDate = Date[0];

Plot1(FirstDate,"FDate");

Reply With Quote
  #8 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

mandelmus,

you are welcome. Yes, it would like this. You can remove the [0] for the date, as it's not needed. But letting it in won't do any harm either.

Regards,
ABCTG

Follow me on Twitter Reply With Quote




Last Updated on March 13, 2015


© 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