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.

mb3000

Setting Audio Alert for Momentum

Recommended Posts

Can anyone please help me with Easy Language code for setting an audio alert for

momentum crossing +.50 or crossing -.50 ?

 

Thanks very much.

 

what is momentum crossing?

Share this post


Link to post
Share on other sites

Hi Mb3000,

 

Paste this code at the end of the Momentum Indicator. Make sure you are making a copy of Original Indicator..

 

if Mom > 0.5 and Mom <= 0.5 then
Alert( "Indicator crossed +0.5" )
else if Mom < -0.5 and Mom >= -0.5 then
Alert( "Indicator crossed -0.5" ) ;

 

Also make sure that you have audio alert on in the format Analysis technique-->Alert Tab.

 

Good Luck..

EasyTrader_I.

Share this post


Link to post
Share on other sites
Mom > 0.5 and Mom <= 0.5

Mom < -0.5 and Mom >= -0.5

are both impossible - you need to decrement 1 bar

 

Mom > 0.5 and Mom [1]<= 0.5

Mom < -0.5 and Mom[1] >= -0.5

 

better still, use...

 

Mom cross above -0.5 or Mom cross below -0.5...

Share this post


Link to post
Share on other sites

yaeh, I'm always thinking strategy coding, but for indicators using functions is fine.

In a strat calling functions takes time, crosses is a boolean that calls the math to set the boolean - 4 steps instead of one

Share this post


Link to post
Share on other sites
yaeh, I'm always thinking strategy coding, but for indicators using functions is fine.

In a strat calling functions takes time, crosses is a boolean that calls the math to set the boolean - 4 steps instead of one

 

you must be from the old school...

 

50 years ago... when computer resources were scarce...

RAM were expensive, even main frame computers have limited memory onboard.

the computer scientists circumvent the limitation by offloading portions of the codes into functions, and call them only when needed.

 

many things have changed since the good old days.

not only the computers have more memory, the computer language compilation has changed as well.

when you load an indicator into the computer, the codes are compiled on the fly... all the components -- the main body, the functions, etc., are all merged into one, and the whole thing is resided in the memory. and they execute as a unit.

 

now I am not saying coding a snippet in the main body is always the same as a snippet in a function. The code is structured differently, so the behavior and effect will be different. but the difference is not due to delay in "calling" a function.

 

 

ps. "cross" is a built-in keyword, not a function.

Edited by Tams

Share this post


Link to post
Share on other sites

I do understand, but I think this is good to have post on.

I'm not the best writer for sure.

When I say call the function, it is because it isn't inline and code has to move to the pointer for it. Certainly today, the delay for that is giga, but on ES ticks with 8000 lines? (rhetorical)

I understand what you mean - keyword, so I explain myself, boolean call to math to boolean - wrapped in a keyword.

Anyways, speed is king and if auto daytrading definitely go for overkill on processor speed and memory and internet speed.

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.


×
×
  • Create New...

Important Information

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