Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Straddle Price Chart for Amibroker (AFL)
You can plot straddle or strangle price ..
Basically this AFL combines 2 symbol OHLC and plot it as one.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | _SECTION_BEGIN ( "Strangle and Straddle Spread" ); SetChartOptions (0, chartShowArrows | chartShowDates ); _N ( Symbol1= ParamStr ( "Strike1" , "NIFTY20JUN10000CE" ) ); SetForeign ( Symbol1 ); C1 = C ; H1 = H ; L1 = L ; O1 = O ; V1 = V ; RestorePriceArrays (); _N ( Symbol2= ParamStr ( "Strike2" , "NIFTY20JUN10000PE" ) ); SetForeign ( Symbol2 ); C2 = C ; H2 = H ; L2 = L ; O2 = O ; V2 = V ; RestorePriceArrays (); Color = ParamColor ( "Color" , colorDefault ); Style = ParamStyle ( "Style" , styleLine , maskPrice ); PlotOHLC ( O1+O2, H1+H2, L1+L2, C1+C2, "(" + Symbol1+ " + " +Symbol2 + ") spread" , Color, style ); _SECTION_END (); |
3 comments
Leave Comment
Please login here to leave a comment.
Back
well
Its just the sum of 2 Stocks
Good Job