Search results

  1. T

    Pivot + stochastic mark

    after Pivot point marked upto stochastic crossed below 80 stylecould mark (as like stochastic marked manually) possible
  2. T

    My System - My trades.

    First thing is both are FIBONACCI numbers second very short term and mid term EMAs so cross will issue signal earliest third default settings of CCE with ADX is enough to predict trend change
  3. T

    Simple Coding Help - No Promise.

    post the code i will do the needful
  4. T

    Need Help-Simple Crossover EMA9-MA18 with a twist

    Hi Code u reqd. what i understood before day or two cross alert / exploration for volume / volume comparison with previous day volume etc. is it? regds/SHIVA
  5. T

    Multi time frame error

    _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", colorWhite )...
  6. T

    Multi time frame error

    this is actually issue errors in displaying line values of the different time frame values in a single chart check with 15min/hourly/daily each time frame issue different value to other time frame values TimeFrameSet( in15Minute ); // switch to 5 minute frame b1=WMA(H+L+C/3,10)...
  7. T

    Crossover coding in Metastock Exploration

    _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", colorRose ), styleNoTitle...
  8. T

    Add Buy Sell Arrow in formula

    Plot(trailstop,"",colorLightGrey); Plot(profittaker,"",colorRed); add this also forSL and profit taker
  9. T

    Add Buy Sell Arrow in formula

    this was the formula used to color changed. so i consider this is for buy and SELL ihope this is useful Buy=entrysignal; Sell=exitsignal; Buy=ExRem(Buy,Sell); Sell=ExRem(Sell,Buy); PlotShapes(shapeUpArrow * Buy,colorWhite,0,L,-15); PlotShapes(shapeDownArrow * Sell,colorBlue,0,H,-15);
  10. T

    Add Buy Sell Arrow in formula

    Buy=entrysignal; Sell=exitsignal; Buy=ExRem(Buy,Sell); Sell=ExRem(Sell,Buy); PlotShapes(shapeUpArrow * Buy,colorWhite,0,L,-15); PlotShapes(shapeDownArrow * Sell,colorBlue,0,H,-15);
  11. T

    Need AFL for My Strategy

    correct the error A1= Open; B1= High; C1 =Close; D1 = B1-A1; E1 = A1-C1; f1=A1+(B1-A1)+10; g1=A1-(B1-A1)-10; h1=F1-12; i1=F1+21; j1=G1+12; k1=G1-21; //if D is LESS than E : then Plot lines as follows for(i=0;i<BarCount;i++) { if (D1[i]<E1[i]) { Plot (f1,"1",colorWhite)...
  12. T

    AFL correction centre

    just minor mistake change _section_end();
  13. T

    Any one please correct this AFL Error?

    some DLL file is missing
  14. T

    Formula for this JPG

    Hi anybody know this indicator name and formula, in 15m time frame it works fine
  15. T

    Need AFL : for this Strategy

    explain the strategy in full i will help u
  16. T

    Colour chages

    bi = BarIndex(); ii = SelectedValue( bi ) - bi[ 0 ]; if (C[ii]>O[ii]) GfxSetTextColor(colorGreen); else GfxSetTextColor(colorRed); i want color change only when current close above previous candle high
  17. T

    AR TRADING SYSTEM AFL FREE i make this AFL

    In which time frame it is comfortable
  18. T

    Sensex data

    http://www.bseindia.com/indices/IndexArchiveData.aspx?expandable=1 download all the historical data from this link
  19. T

    Historical BSE Top Gainers

    http://www.bseindia.com/indices/IndexArchiveData.aspx?expandable=1 for historical data
  20. T

    post this jpg AFL

    post this afl and below the chart some stochastic momentum or trix please confirm