How to get this value...
-
Hi again... I am wondering how to get the price value at the point where the indicators crosses, and not the price value based on the candle?

@roar Kindly gave me a pointer that day in another topic, but that was with a mouse clicked event, and a line drawn. What if for this scenario, I just want to get that price value of the cross, without any line drawn, and save it in a variable say "Cross_Value"?
Anyone be so kind to show/lead me how to do it? Thanks in advance.
-
@jacque82 That is not possible AFAIK. This crossing value is a visual artefact that doesn't have any real representation on price. Please remember that the platform is working wit quotes and those are discreet price levels. Lines are continuous visual 'virtual' points. Not real quotes (ie prices).
-
@jacque82 said in How to get this value...:
Hi again... I am wondering how to get the price value at the point where the indicators crosses, and not the price value based on the candle?

@roar Kindly gave me a pointer that day in another topic, but that was with a mouse clicked event, and a line drawn. What if for this scenario, I just want to get that price value of the cross, without any line drawn, and save it in a variable say "Cross_Value"?
Anyone be so kind to show/lead me how to do it? Thanks in advance.
Since we are talking about a single points, you can put a condition "bid = MA value", it's rarely but happens. Make sure to works on candle ID 0 and on MA applied price "open" (you can see that on "close price" there are more signal but a little bit less precise)

-
Aaa thanks again... I'll try toying with it!