Is there a way to have price reflect an indicator condition?
For example, lets say TSV crosses above the 0 line. Is there a way to show this crossover where price is plotted? Maybe a change in candle or line color? Really I'm just looking for a way to pull up a chart and quickly see how price reacted when the condition was true.
|
Thanks for your help Bruce.
What I ended up doing because although sometimes the numbers may match in the view that comes when you click the mouse (may be rounded), they may not exactly match so I gave it some buffer room as seen below.
No / very small bottom wick HA:
((XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4) + .00003 >= (H + (XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4 + ABS(H - (XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4)) / 2
|
I am trying to use a pcf to show whenever there is no bottom or top wick for the currecnt HA candle. The below catches most of these cases but it doesnt catch all of them. Is this the correct way to do this or is there a better way?
For no top wick im having the current HA open = current HA high
(XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4 = (H + (XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4 + ABS(H - (XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4)) / 2
For no bottom wick im having current HA open = current HA Low
(XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4 = (L + (XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4 - ABS(L - (XAVGO3.1 + XAVGH3.1 + XAVGL3.1 + XAVGC3.1) / 4)) / 2
|