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

vixfix explorer for Amibroker (AFL)

Rating:
0 / 5 (Votes 0)
Tags:
amibroker

_SECTION_BEGIN(“VIXFIX explorer”);
_N(Title = StrFormat(FullName() + " {{INTERVAL}} {{DATE}} Open g, High %g, Low %g, Close %g (.1f%%) Volume " +WriteVal( V, 1.0 ) +"\n{{VALUES}}", O, H, L, C, SelectedValue( ROC) ));
WVF = (HHV (Close,22) – Low)/(HHV)*100;

Plot(WVF, “Williams VIX FIX”, colorRed, styleLine);
Plot(HHV, “VIX FIX HHV”, colorBlue, styleLine);
Plot(LLV, “VIX FIX LLV”, colorGreen, styleLine);
_SECTION_END();

_SECTION_BEGIN(“EMA”);
P = ParamField(“Price field”,-1);
Periods = Param(“Periods”, 15, 2, 300, 1, 10 );
Plot( EMA, _DEFAULT_NAME(), ParamColor( “Color”, colorCycle ), ParamStyle(“Style”) );
Buy=Cross(WVF,EMA);
Sell=Cross(EMA,WVF);
//WVixBuy=Cross(WVF,HHV);
//WVixSell=Cross(LLV,WVF);
WVixBuy=IIf(WVF == HHV,1,0);
WVixSell=IIf(WVF == LLV,1,0);
/////////////////////////////////// Exploration ///////////////////////
Filter = Buy OR Sell;
/////////// General Columns ////////////////////////
AddTextColumn( FullName( ), “Name” );
AddColumn(C,“Close”);
AddColumn(WVF,“VIX”);
Filter = Close > 100;

//////////////// BUY/SELL SIGNALS ///////

AddColumn( IIf(Buy,1,IIf(Sell,-1,Null)) ,“DailySignal”,1.0,colorWhite,IIf(Buy,colorGreen,IIf(Sell,colorRed,colorWhite)));
AddColumn( IIf(WVixBuy,1,IIf(WVixSell,-1,Null)) ,“VixAvgSignal”,1.0,colorWhite,IIf(WVixBuy,colorGreen,IIf(WVixSell,colorRed,colorWhite)));

//////////////////////////////////// Exploration over ////////////////////////////
_SECTION_END();

You cannot view the code for the following reasons:
  • The indicator has not yet been approved by the Administrator.

1 comments

1. kems

can be used to buy at reversal. ..

Leave Comment

Please login here to leave a comment.

Back