Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Tradewinds

Bar Countdown Timer

Recommended Posts

Here is a count down timer for Easy Language that only works on an intraday chart. I hacked up that other code, and stripped out a lot of stuff. I got rid of a couple of function calls, and changed where the countdown display is located on the chart. I put it right next to the price bar. That's where I want it.

 

	{NAME:  	BarCountdownTimer

TYPE:	Indicator
Modified code originally created by	Bill Conley (AKA Kahuna)

https://www.tradestation.com/Discussions/Profile.aspx?Member_ID=2786}


inputs:
AlertPct(15);  // (0->100) Change color when this percentage of the bar remains

var:
LastBar(False),
TxtStr(""),		// Text String  
TxtID(text_new(date,time,close, " ")),		// Text Object Reference
dtEndTime(0),	// EndTime for Bar
dtTimeLeft(0),	// Time Left in Bar
dtBarTime(0),	// Total Time in Bar
BarLeftPct(0),	// Percent of Bar Remaining
MinDayInv(1/1440)	// One Min portion of day
;

const:
{ Display Options }
cDispRaw(2),		// Option to display Time/Tick/Vol Values
{ Bar Types }
cMinute(1)		 	// Intraday (Minute) Chart
;

var: CntrHeight(0);

{== Initialization ===================================================}

once begin
	// Check for valid chart
	if BarType <> 1	// Intraday (Minute) Chart
	then RaiseRunTimeError(
		"This code only works on Intraday chart");
	if AlertPct > 100 or AlertPct < 0 then
		RaiseRunTimeError("The AlertPct input must be set between 0 and 100");
		// Calc Total Time for Bar
			dtBarTime = MinDayInv * BarInterval;
  	end;

{== Calculations ====================================================}

LastBar = D = _LastCalcDate and T = _LastCalcTime;

if LastBar then begin // Only display in real-time
	Text_SetLocation(TxtID, D, T, (H+L)/2); // Set Text Location
	Text_SetStyle(TxtID, 0, 2) ; // Left & Centered 

	If BarStatus(1) = 2 then // BarStatus determines whether the bar is at open or close: 2 = close
		dtEndTime = ComputerDateTime + dtBarTime;			
	   	if dtEndTime <> 0 then begin
			dtTimeLeft = dtEndTime - ComputerDateTime; // Calc Time Left & Pct. Left
			BarLeftPct = (dtTimeLeft / dtBarTime) * 100;
			TxtStr = "      " + FormatTime("m:ss", dtTimeLeft); // Format the text
			End
		Else
			TxtStr = "Syncing...";

	text_setstring(TxtID, TxtStr);

	if BarLeftPct < AlertPct then 
		text_SetColor(TxtID, Red) // Use Alert Color
	Else text_SetColor(TxtID, Blue);		

End;

Share this post


Link to post
Share on other sites

It looks like TS version 9 has a new way to deal with forcing code to run, which affects countdown timers. Here is a new countdown timer.

 

{ _TimerExample4

v1.0	8 August 2011

Designed for TradeStation 9

This code is a simple bar countdown timer for minute bars.
}


using elsystem;

vars:	int TXID(0),

	IntrabarPersist Countdown_Text("  time"),

	IntrabarPersist mins(0), IntrabarPersist secs(0),
	IntrabarPersist mins_str(""), IntrabarPersist secs_str(""),

	IntrabarPersist Guess(true),

	Countdown_seconds(1),

	Timer Timer1(null);


//This is the Timer event.  Note that we've seperated out the 'time left in bar' calculation,
// and the 'display text' calculation into their own methods.  And then we call them from 
// this event.  This is good coding practice.
method void Timer1_Elapsed( Object sender, TimerElapsedEventArgs args ) 
begin
Calc_Time_Remaining();	//Calculate the amount of time remaining

Display_Text();			//Display the amount of time remaining
end;


//Calculate the amount of time remaining in the bar
// This is reasonably complex, but isn't particularly relevant to how the Timer object works
// so you don't need to understand it
method void Calc_Time_Remaining()
begin
//If its the end of a bar then set the countdown to the bar interval
if BarStatus(1) = 2 then begin
	mins = BarInterval;
	secs = 0;

	Guess = false;

	//We're turning the time off and on here just to sync it correctly with the bar end
	Timer1.Enable = false;
	Timer1.Enable = true;
end
//This is our first guess at the bar time, before we have a bar end to sync properly.
// It uses your computer clock to work out roughly how much time is left in a bar.
else if Guess then begin
	mins = BarInterval - Mod(MinutesFromDateTime(ComputerDateTime), BarInterval);
	secs = 60 - SecondsFromDateTime(ComputerDateTime);
	if secs = 60 then secs = 0;
	if secs > 0 then mins = mins - 1;
end
//Countdown our timer
else begin
	secs = secs - Countdown_seconds;
	if secs < 0 then begin
		mins = mins - 1;
		secs = 59;
	end;
end;

//Set our Countdown_Text variable to the correct string
mins_str = NumToStr(mins, 0);
secs_str = NumToStr(secs, 0);
if strlen(secs_str) = 1 then secs_str = "0" + secs_str;
Countdown_Text = "  " + mins_str  +":" + secs_str;
end;



//Display our countdown text
method void Display_Text()
begin
Text_SetString(TXID, Countdown_Text);
Text_SetLocation(TXID, date, time, Close);
Text_SetStyle(TXID, 0, 2);
end;



//This author uses 'once' to initialize objects.  Other authors may use 
// AnalysisTechnique_Initialize, or a component dragged and dropped from the 
// ToolBox.  All approaches are equally valid, they are just down to the 
// authors style.
once
begin
//Create the Timer, set it to update every second, but don't start it yet
Timer1 = new elsystem.Timer;
Timer1.Interval = Countdown_seconds * 1000;
Timer1.Elapsed += Timer1_Elapsed;

//Create the text to display the countdown	
TXID = Text_New(date, time, close, Countdown_Text);
end;


//When the first real-time tick arrives...
if GetAppInfo(aiRealTimeCalc) = 1 then begin
//...start the Timer
Timer1.Enable = true;

//Set the amount of time left in a bar at the end of every bar
if BarStatus(1) = 2 then begin
	Calc_Time_Remaining();
end;
end;

Display_Text();

Share this post


Link to post
Share on other sites

I modified the above code. I didn't like the code trying to guess how much time was left in the first bar, so I removed that. And I added text coloring to make the counter red when there is only 5 seconds left in the bar. Also changed the display from the close to the HL2 so it's not jumping around as much, and added some spacing to push it further to the right of the bar.

 

 

 

{ This code is a modified version of _TimerExample4

v1.0	8 August 2011

Designed for TradeStation 9

This code is a simple bar countdown timer for minute bars.
}

using elsystem;

vars: TxtID(0),	IntrabarPersist DisplayTxt(" "), IntrabarPersist mins(0), IntrabarPersist secs(0),
	IntrabarPersist mins_str(""), IntrabarPersist secs_str(""),

	IntrabarPersist FrstCalc(true),

	Timer Timer1(null);

method void Timer1_Elapsed( Object sender, TimerElapsedEventArgs args ) 
begin
Calc_Time_Remaining();	//Call Subroutine that calculates the time remaining
Display_Text();			//Call Subroutine that displays time remaining
end;

//Calculate the amount of time remaining in the bar
// This is reasonably complex, but isn't particularly relevant to how the Timer object works
// so you don't need to understand it
method void Calc_Time_Remaining()
begin
//If its the end of a bar then set the countdown to the bar interval
if BarStatus(1) = 2 then begin
	mins = BarInterval;
	secs = 0;

	FrstCalc = false;

	//Turning time off and back on to sync it with the bar end
	Timer1.Enable = false;
	Timer1.Enable = true;
end
//Countdown our timer
else if FrstCalc = false then begin
	secs = secs - 1;
	if secs < 0 then begin
		mins = mins - 1;
		secs = 59;
	end;
	DisplayTxt = "       " + mins_str  +":" + secs_str;
End
//First approximation of bar time, before end of bar sync.
// It uses your computer clock to work out roughly how much time is left in a bar.
else begin
	//mins = BarInterval - Mod(MinutesFromDateTime(ComputerDateTime), BarInterval);
	//secs = 60 - SecondsFromDateTime(ComputerDateTime);
	//if secs = 60 then secs = 0;
	//if secs > 0 then mins = mins - 1;
	DisplayTxt = "Syncing...";
end;


//Set our DisplayTxt variable to the correct string
mins_str = NumToStr(mins, 0);
secs_str = NumToStr(secs, 0);
if strlen(secs_str) = 1 then secs_str = "0" + secs_str;
end;



//Display our countdown text
method void Display_Text()
begin
if secs <= 5 then 
		text_SetColor(TxtID, Red) // Use Alert Color
	Else text_SetColor(TxtID, Blue);
Text_SetString(TxtID, DisplayTxt);
Text_SetLocation(TxtID, D, T, (H+L)/2);
Text_SetStyle(TxtID, 0, 2);
end;

once
begin
//Create the Timer, set it to update every second, but don't start it yet
Timer1 = new elsystem.Timer;
Timer1.Interval = 1 * 1000;
Timer1.Elapsed += Timer1_Elapsed;

//Create the text to display the countdown	
TxtID = Text_New(date, time, (H+L)/2, DisplayTxt);
end;

//When the first real-time tick arrives...
if GetAppInfo(aiRealTimeCalc) = 1 then begin
//...start the Timer
Timer1.Enable = true;

//Set the amount of time left in a bar at the end of every bar
if BarStatus(1) = 2 then begin
	Calc_Time_Remaining();
end;
end;

Display_Text();

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Date: 21st February 2025.   European PMI Disappoint, Weighing on Euro Before German Elections   The Euro is the first currency to witness the volatility on this month’s PMI reports. The French, German and British PMI data have resulted in the Euro being the worst-performing currency of the European Session so far. However, will the Euro continue to decline throughout the day? European Purchasing Managers’ Indexes The French Purchasing Managers Index was the first European index to be made public. The release resulted in the Euro instantly declining 0.24%. The main concern from the French data was the Services PMI which fell from 48.2 to 44.5. Previously the market was expecting the data to remain more or less unchanged. The weak data triggered the decline which came to a halt after Germany’s PMI was released.     The German Manufacturing PMI read 0.5 points higher than previous expectations and the Services PMI was 0.2 points lower. The data from Germany was a relief for Euro investors and the price rose 0.12% higher. However, traders should note that the price of the EURUSD continues to remain 0.20% lower than yesterday’s close. The price of the EURUSD will now depend on the PMI data from the US. The value of the US Dollar will depend on its PMI release this afternoon and the Consumer Sentiment Index. Analysts expect both the US Services and Manufacturing PMI data to remain above the 50.00 level in the expansion zone. German Elections 2 Days Away Germany is set to hold a general election this Sunday, February 23rd, following the collapse of the coalition of social democrats, liberals, and greens. Given the country's highly proportional electoral system, German polls provide a strong indication of potential government formations post-election. The main concern for Germany is the AFD party who are Far-Right Nationalists. Currently, ahead in the polls are CDU (centre-right), and AFD (far right), followed by the SPD (centre-left). Traders should note that the results of the elections are likely to trigger strong volatility on Monday, but also influence volatility today. Economists may become further concerned if the far-right gains power for the first time due to uncertainty. If the government, similar to France, is unable to form a coalition, this would also be a concern for the Eurozone. Furthermore, the Euro this week is also under pressure from comments from members of the European Central Bank. ECB Governing Council member Fabio Panetta said to journalists that officials need not slow interest rate cuts, as January's 2.5% inflation is still expected to reach the 2.0% target this year. He also advised the European economy is weaker than previously expected. EURUSD - Technical Analysis and Indicators The EURUSD is trading above the 75-bar Exponential Moving Average and 100-bar Simple Moving Average on the 2-hour chart. However, the price is moving away from the key resistance level at 1.05058 indicating the price is losing momentum. The short-term volatility is indicating the price is retracing downwards. On the 5-minute timeframe, the price is trading below the 200-bar SMA and is also forming clear lower lows and highs. Simultaneously, the US Dollar Index is trading above the 200-bar SMA on the 5-minute chart confirming no current conflicts. Currently, the US Dollar is the best-performing currency of the day attempting to regain losses from the past 2 weeks. Watch today’s Live Analysis Session for more signals as they develop!   Key Takeaway Points: Weak French Services PMI triggered an initial Euro decline, but German PMI provide a slight relief. However, EURUSD remains lower than yesterday’s close. The Euro’s direction now depends on the US PMI reports, with analysts expecting US data to stay in expansion territory. Sunday's German election could drive volatility, especially if the far-right AFD gains power or if coalition formation proves difficult. ECB official Fabio Panetta suggested no need to slow rate cuts, citing weaker-than-expected economic performance and expected inflation decline. Always trade with strict risk management. Your capital is the single most important aspect of your trading business.   Please note that times displayed based on local time zone and are from time of writing this report.   Click HERE to access the full HFM Economic calendar.   Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news.   Michalis Efthymiou HFMarkets   Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in Leveraged Products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • BE Bloom Energy stock, watch for a range breakout, target 34 area at https://stockconsultant.com/?BE
    • APLD Applied Digital stock. nice rally, watch for a top of range breakout at https://stockconsultant.com/?APLD
    • UAL United Airlines stock, watch for a narrow range breakout, target 122 area at https://stockconsultant.com/?UAL
    • WBD Warner Bros Discovery stock, watch for a range breakout at https://stockconsultant.com/?WBD
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.