logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
CalgaryCoolCat  
#1 Posted : Saturday, June 13, 2020 1:30:38 AM(UTC)
CalgaryCoolCat

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 4/7/2019(UTC)
Posts: 5
Location: Calgary

Hello,

I am trying to figure out how to incorporate a buy or sell signal alert into this - the criteria would be for the day that I run the exploration, it would let me know if there is a buy or sell singal triggered on that day.  Hope that makes sense, and thank you!

MS Support  
#2 Posted : Monday, June 15, 2020 2:31:55 PM(UTC)
MS Support

Rank: Advanced Member

Groups: Moderators, Registered, Registered Users, Subscribers
Joined: 10/8/2010(UTC)
Posts: 1,929

Thanks: 85 times
Was thanked: 154 time(s) in 150 post(s)
Originally Posted by: CalgaryCoolCat Go to Quoted Post

Hello,

I am trying to figure out how to incorporate a buy or sell signal alert into this - the criteria would be for the day that I run the exploration, it would let me know if there is a buy or sell singal triggered on that day.  Hope that makes sense, and thank you!

Hi,

You may want to check out the Expert Advisor of the same name and look at (Edit) the different Symbols used for Entry and Exits to see if this is more what you are looking for.

However, if you just wanted to change the existing exploration signals in Columns A/B in the exploration, you could modify the last line to use the Cross function, instead of using Greater than 0 / Less than 0 criteria. 

So instead of:

Code:
Signal>0;

you could do something like the following for Column A:

Code:
Cross(Signal,0);
 

or Column B:

Code:
Cross(0,Signal);
 

I always recommend making a copy (right-click > Copy the exploration) before editing.

Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.