NexusFi: Find Your Edge


Home Menu

 





Help with audio alert for fractal indicator


Discussion in EasyLanguage Programming

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




 
Search this Thread

Help with audio alert for fractal indicator

  #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 Twitter Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
Cheap historycal L1 data for stocks
Stocks and ETFs
ZombieSqueeze
Platforms and Indicators
 
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,629


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 Twitter 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 Twitter Started this thread Reply With Quote
Thanked by:
  #5 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,629

sithtrader,

great, thanks for letting me know.

Regards,

ABCTG

Follow me on Twitter Reply With Quote




Last Updated on April 19, 2017


© 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