Trading Articles
Article Categories
Article Tools
flashing cells easylanguage
Updated March 4, 2018
trending_up
679 views
thumb_up
0 thanks given
group
3 followers
forum
4 posts
attach_file
0 attachments
Welcome to futures io: the largest futures trading community on the planet, with well over 125,000 members
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to
register in order to view the content of the threads and start contributing to our community.
It's free and simple.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
flashing cells easylanguage
(login for full post details)
#1 (permalink )
world's citizen
Posts: 45 since Oct 2015
Thanks: 10 given,
7
received
can someone please help me in coding it?
i'm trying with no luck to code a flashing (blinking) cell in radarscreen for the following alarm
Code
Var:
MyAlarm = True;
if Condition1 then
begin
Plot1 ("YeY", "1");
Alert( ! ( "Alert" ) );
SetPlotColor ( 1 , DarkBlue );
SetPlotBGColor (1, White);
Once begin
MyAlarm = (playsound("C:\MyFiles\MySounds.wav"));
end;
end
Else begin
Plot1 ("", "1");
SetPlotBGColor (1, Transparent);
end;
Can you help answer these questions from other members on futures io?
Best Threads (Most Thanked) in the last 7 days on futures io
(login for full post details)
#3 (permalink )
Posts: 2,230 since Apr 2013
Thanks: 409 given,
1,471
received
w4rri0r,
it appears you got a working example for your question in the official TS forum already. Maybe you can post your solution here on futures.io to help other members.
Regards,
ABCTG
(login for full post details)
#4 (permalink )
world's citizen
Posts: 45 since Oct 2015
Thanks: 10 given,
7
received
ABCTG
w4rri0r,
it appears you got a working example for your question in the official TS forum already. Maybe you can post your solution here on futures.io to help other members.
Regards,
ABCTG
i wouldn't asking for help if i've got a solution ....or you are the same Chris of TS support....
(login for full post details)
#5 (permalink )
world's citizen
Posts: 45 since Oct 2015
Thanks: 10 given,
7
received
any hope to get any chance for an unselfish helping hand by easylanguage community....?
i found this code on the net
Code
using elsystem ;
using elsystem.collections ;
Vars:
Timer Tmr(null),
DateTime now(null),
TimeSpan ExitFlasher(null),
DateTime ExitDT(null);
method void Tmr_Elapsed(object sender, EventArgs args)
begin
PlotIt();
end;
method void PlotIt()
begin
//---------------------------------------------------------------------------------------------------
// FLASH background color to highlight
//---------------------------------------------------------------------------------------------------
ExitFlasher = DateTime.Now - ExitDT;
Plot1("FLASHER", "Exit DT");
if mod(ExitFlasher.TotalSeconds, 2) = 0 then
begin
setplotbgcolor(1, Yellow);
setplotcolor(1, Black);
end
else
begin
setplotbgcolor(1, Black);
setplotcolor(1, White);
end;
end;
Once
begin
Tmr = new Timer();
Tmr.Interval = 1000;
Tmr.Elapsed += Tmr_Elapsed;
Tmr.Start();
ExitDT = DateTime.Now;
end;
value99 = close;
PlotIt();
Last Updated on March 4, 2018
Right now
Ongoing
Right now
March
Register to Attend
Elite only
Coming soon
April