Greetings,
Im looking for a straightforward tick count indicator for Forex to use as a "volume indicator" to help with trade entries on the daily chart, preferably one with an "average line" where cross above would indicate higher than normal "volume". Ive tried a few on here including this one:
But this doesn't display on the daily chart and has no average line.
Any Recommendations.
Thank you
Im looking for a straightforward tick count indicator for Forex to use as a "volume indicator" to help with trade entries on the daily chart, preferably one with an "average line" where cross above would indicate higher than normal "volume". Ive tried a few on here including this one:
Code:
declare lower;
declare zerobase;
def TradeCount = tick_count;
def MoneyCount = volume;
plot avgTradeCount = ((MoneyCount[1] + MoneyCount) / 2) / ((TradeCount + TradeCount[1]) / 2);
AvgTradeCount.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
AvgTradeCount.AssignValueColor(if TradeCount >= AvgTradeCount then Color.UPTICK else Color.DOWNTICK);
But this doesn't display on the daily chart and has no average line.
Any Recommendations.
Thank you