misc
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
//@version=5
|
||||
//@version=4
|
||||
indicator("DrNiki's Market Nuker", shorttitle="DrNiki's Market Nuker", overlay=true)
|
||||
|
||||
// Input for Indicators
|
||||
@ -73,3 +73,10 @@ for i = 0 to array.size(pairs) - 1
|
||||
|
||||
plot(totalLongPoints, title="Total Long Points", color=color.blue)
|
||||
plot(totalShortPoints, title="Total Short Points", color=color.orange)
|
||||
|
||||
|
||||
// BUYING VOLUME AND SELLING VOLUME //
|
||||
buyVolume = iff( (high==low), 0, volume*(close-low)/(high-low))
|
||||
sellVolume = iff( (high==low), 0, volume*(high-close)/(high-low))
|
||||
plot(volume, style=plot.style_columns, color=color.red, title="SELL V") // shows total volume (!)
|
||||
plot(buyVolume, style=plot.style_columns, color=color.teal, title="BUY V") // shows only buy volume
|
||||
|
Reference in New Issue
Block a user