I apologize in advance if this question seems basic or stupid. I am working on developing a trading strategy that enters a trade based off of the Wiseman Alligator indicator. In the trade, I have the indicator defined as follows
double teeth = WisemanAlligator(13, 8, 5, 8, 5, 3).Teeth[0]; double jaw = WisemanAlligator(13, 8, 5, 8, 5, 3).Jaw[0]; double lips = WisemanAlligator(13, 8, 5, 8, 5, 3).Lips[0];
However, my question is how can I get the values of where the current green line is at? Looking at the chart, it lines up at about 4145ish, yet the value returned is 4143.36, 2 points below. Is there a way to get the value of the green line when printed to show the 4145 where it is at now?
Please let me know if this makes any sense and if this is even possible. Thanks!
Comment