Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

The Volume Bigot for Amibroker (AFL)

Rating:
4 / 5 (Votes 7)
Tags:
amibroker, volume, oscillator

Don’t know where I got the original version…but this is the current iteration

Screenshots

Similar Indicators / Formulas

Orion Indicator
Submitted by vargasc1 over 12 years ago
OBV wonder shadows
Submitted by shivaprasadmb almost 13 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
KPShortTermTrend Bias
Submitted by knifeman over 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Chart Display");

GraphXSpace = 28;
SetBarsRequired( 1,1); 
Param_systemTitle = ParamStr("System Title?","The Volume Bigot");
if(ParamToggle("Show System Title?","No|Yes",1))

periods = Param("Periods", 34, 1, 200, 1 ) ; 

BulldayVol= ( Sum( IIf( C>=Ref(C,-1), V, 0), periods)) / periods ;
BeardayVol= ( Sum( IIf( Ref(C,-1)>=C, V, 0), periods)) / periods ;

TheVolumeBigot= 100-(100/(1+(BulldayVol/BearDayVol)))-50;

Plot(TheVolumeBigot,"       THE VOLUME BIGOT   ",28,4+styleNoLabel);

Colour= IIf(TheVolumeBigot>0,8,4);
Plot( TheVolumeBigot,"",Colour,2);

Plot(0,"",colorGrey50,styleNoLabel); 

Plot(10,"",colorGrey50); Plot(-10,"",colorGrey50);
Plot(20,"",colorGrey50); Plot(-20,"",colorGrey50);
_SECTION_END();

_SECTION_BEGIN("Title");

Title = EncodeColor(55)+  Title = Name() + "     " + EncodeColor(32) + Date() +
"      " + EncodeColor(5) + "{{INTERVAL}}  " +
	EncodeColor(55)+ "     Open = "+ EncodeColor(52)+ WriteVal(O) + 
	EncodeColor(55)+ "     High = "+ EncodeColor(5) + WriteVal(H) +
	EncodeColor(55)+ "      Low = "+ EncodeColor(32)+ WriteVal(L) + 
	EncodeColor(55)+ "    Close = "+ EncodeColor(52)+ WriteVal(C)+
	EncodeColor(55)+ "    Volume = "+ EncodeColor(43)+ WriteVal(V,1) +
      "\n" +"\n" +EncodeColor(43)+"     ------ THE VOLUME BIGOT ------   " + EncodeColor(52);

_SECTION_END();

3 comments

1. prasadbrao

Excellnt

2. abdulaziz99

hi
can u tell us the perfect way to use it and in which fram ???

3. abdulaziz99

how can I use it , can any one tell us ??

Leave Comment

Please login here to leave a comment.

Back