plot

  1. M

    how to plot a line with AFL

    how can i plot a line between 2 selected points. _SECTION_BEGIN("trendline"); var1=SelectedValue(O); var2=SelectedValue(C); _SECTION_END(); If i use Plot(startpoint,"Low",colorYellow,styleLine,1); it plots a straight line at the value of var1...i want to get a line from var1 to var2
  2. A

    nseindia to Amibroker

    Hi Members, Please help me plot IV data for call and put in amibroker. I want the data to be pulled up from www.nseindia.com. https://www1.nseindia.com/live_market/dynaContent/live_watch/option_chain/optionKeys.jsp?segmentLink=17&instrument=OPTIDX&symbol=NIFTY&date=28APR2016 Thanks...
  3. R

    Whats wrong with the plot function??

    _SECTION_BEGIN("Price"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) )); Plot( C, "Close", ParamColor("Color", colorDefault )...
  4. A

    Nifty auto refreshing Excel sheet to Amibroker - Help Needed

    Hi Member, I have an excel sheet that fetches Call Put data from nifty every one minute. That is auto refreshing. I want to plot OI of a current strike price in one chart in amibroker. Please guide. Thanks Aman
  5. A

    Plotting foreign symbol - AFL HELP NEEDED

    Hi seniors, I am able to plot 2 symbols in one chart using the formula: PlotForeign( "JUSTDIAL-I", "JUSTDIAL", colorRed, styleBar ); -------- Please help me plot the average of prices of both the symbols. 2 symbols ploted in my chart are: HDFC-I & JUSTDIAL-I How shall I plot...
  6. A

    Plotting foreign symbol

    Plotting foreign symbol - HELP NEEDED Hi seniors, I am able to plot 2 symbols in one chart using the formula: PlotForeign( "JUSTDIAL-I", "JUSTDIAL", colorRed, styleBar ); -------- Please help me plot the average of prices of both the symbols. 2 symbols ploted in my chart are...
  7. J

    how to do this?

    Hello, using Plot() to plot lines... draws a lines from left to right. But I want to draw a line on the right side.. and NOT the left side... For example: I want to draw Pivot Lines but simply passing the pivot value draws the whole line.. I want them only on right side. Actually I had...