NexusFi: Find Your Edge


Home Menu

 





Retrieve first date on an intraday chart


Discussion in EasyLanguage Programming

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




 
Search this Thread
  #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?
$500M Riding on World Cup 2026: France/Spain Co-Favored …
Prediction Markets & Event Contracts
ATFX Suspends Prop Trading Unit ATFunded -- Full Review …
Funded Trading Evaluation Firms
Warsh Drops Easing Bias, December Hike Now Above 50% -- …
Prediction Markets & Event Contracts
After $87M Settles NO: Irans Nuclear Redline Sets Up the …
Prediction Markets & Event Contracts
Thursday May 28: GDP + Core PCE + Jobless Claims All at …
Traders Hideout
 
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643


mandelmus,

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

Regards,

ABCTG


Follow me on X 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,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

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 X 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,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

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 X Reply With Quote




Last Updated on March 13, 2015


© 2026 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 - Downloads - Top
no new posts