NexusFi: Find Your Edge


Home Menu

 





Help with audio alert for fractal indicator


Discussion in EasyLanguage Programming

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




 
Search this Thread
  #1 (permalink)
 
sithtrader's Avatar
 sithtrader 
Round Rock/Texas
 
Experience: Intermediate
Platform: Sierra Chart
Broker: AMP & CQG
Trading: ES, CL, NQ
Posts: 3 since Aug 2016
Thanks Given: 5
Thanks Received: 1

Below is the code for a fractal indicator. Unfortunately, when the fractal paints there is no audio. Is there anyone out there that could take a look at this and possibly add the ability to add an audio alert. Much appreciated!




INPUT: PtsInTic(1), TicExpnd(1);
VAR : UpHump(FALSE), DownHump(FALSE), Expansion(0), Move(0);

UpHump = UpFractal = 1;

DownHump = DownFractal = 1;

IF TicExpnd >= MinimumMove THEN
Move = TicExpnd
ELSE
Move = MinimumMove;

Expansion = Move * PtsInTic;

IF UpHump THEN
BEGIN
IF H[2] >= H[3] AND H[2] > H[4] THEN Plot1[2](HIGH[2] + Expansion Points,"UpHump");
IF H[2] = H[3] AND H[3] = H[4] THEN Plot1[2](HIGH[2] + Expansion Points,"UpHump");
IF H[2] > H[3] AND H[2] = H[4] THEN Plot1[2](HIGH[2] + Expansion Points,"UpHump");
IF H[2] = H[3] AND H[3] = H[4] AND H[4] = H[5] THEN Plot1[2](HIGH[2] + Expansion Points,"UpHump");
IF H[2] = H[3] AND H[3] = H[4] AND H[4] = H[5] AND H[5] = H[6] THEN Plot1[2](HIGH[2] + Expansion Points,"UpHump");
END;

IF DownHump THEN
BEGIN
IF L[2] <= L[3] AND L[2] < L[4] THEN Plot2[2](LOW[2] - Expansion Points,"DwnHump");
IF L[2] = L[3] AND L[3] = L[4] THEN Plot2[2](LOW[2] - Expansion Points,"DwnHump");
IF L[2] < L[3] AND L[2] = L[4] THEN Plot2[2](LOW[2] - Expansion Points,"DwnHump");
IF L[2] = L[3] AND L[3] = L[4] AND L[4] = L[5] THEN Plot2[2](LOW[2] - Expansion Points,"DwnHump");
IF L[2] = L[3] AND L[3] = L[4] AND L[4] = L[5] AND L[5] = L[6] THEN Plot2[2](LOW[2] - Expansion Points,"DwnHump");
END;


Follow me on X Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Memorandum Watch: How the 60-Day MOU Framework Makes May …
Prediction Markets & Event Contracts
Warsh Drops Easing Bias, December Hike Now Above 50% -- …
Prediction Markets & Event Contracts
$500M Riding on World Cup 2026: France/Spain Co-Favored …
Prediction Markets & Event Contracts
Warsh Rate Hike at 40%, Iran June 15 Expires Tonight at …
Prediction Markets & Event Contracts
I Have a Thing Called Iran -- Trump Stays in DC as Airsp …
Prediction Markets & Event Contracts
 
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643


sithtrader,

you need to trigger the alert together with the condition that is fulfilled "when the fractal paints".

You can use the below pseudy code, where you have to fill in the actual variables and codes of cause.
 
Code
if fractal painting conditions = true then
begin
    Plot1(.... ) ;
    Alert( "Your Alert Message in here") ;
end ;
This will give the code the ability to trigger alerts and you just have to enable the alerts in the study properties to let Tradestation display them (or play a sound, send emails etc.).

Regards,

ABCTG


Follow me on X Reply With Quote
Thanked by:
  #4 (permalink)
 
sithtrader's Avatar
 sithtrader 
Round Rock/Texas
 
Experience: Intermediate
Platform: Sierra Chart
Broker: AMP & CQG
Trading: ES, CL, NQ
Posts: 3 since Aug 2016
Thanks Given: 5
Thanks Received: 1

ABCTG, thank you for your response! I was able to get the alert code working correctly! I appreciate your time and work! ~SithTrader


Follow me on X Started this thread Reply With Quote
Thanked by:
  #5 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

sithtrader,

great, thanks for letting me know.

Regards,

ABCTG


Follow me on X Reply With Quote




Last Updated on April 19, 2017


© 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