NexusFi: Find Your Edge


Home Menu

 





flashing cells easylanguage


Discussion in EasyLanguage Programming

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




 
Search this Thread

flashing cells easylanguage

  #1 (permalink)
w4rri0r
world's citizen
 
Posts: 45 since Oct 2015
Thanks Given: 10
Thanks Received: 7

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;

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Deepmoney LLM
Elite Quantitative GenAI/LLM
NexusFi Journal Challenge - April 2024
Feedback and Announcements
Better Renko Gaps
The Elite Circle
Are there any eval firms that allow you to sink to your …
Traders Hideout
ZombieSqueeze
Platforms and Indicators
 
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,431 since Apr 2013
Thanks Given: 481
Thanks Received: 1,623


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

Follow me on Twitter Reply With Quote
  #4 (permalink)
w4rri0r
world's citizen
 
Posts: 45 since Oct 2015
Thanks Given: 10
Thanks Received: 7


ABCTG View Post
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....

Reply With Quote
  #5 (permalink)
w4rri0r
world's citizen
 
Posts: 45 since Oct 2015
Thanks Given: 10
Thanks Received: 7

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();

Reply With Quote




Last Updated on March 4, 2018


© 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