Day Trading Stocks & Futures

can anyone with approved wisestock trader account please download this afl and share it

i had submitted 1 afl 4 years ago still my account is not approved to download this indicator

https://www.wisestocktrader.com/indicators/4192-ttm-squeeze-foreign-for-amibroker-afl

regards
Code:
// Downloaded From www.WiseStockTrader.com
//~~~~~~~~~~~~~~~~~~~~~ John Carter's TTM Squeeze Indicator~~~~~~~~~~~~~~~~~~~~~
//    Description:    Bollinger Bands AND Keltner Channel define the market
//                    conditions, i.e. when BB is narrower than KC then we have
//                    a market squeeze.  When BB break Outside the KC then trade
//                    in the direction of the smoothed Momentum(12).
//    Parameters:   
//                *    chanPeriod    - Bollinger Bands AND Keltner Channel length
//                *    bolBandStdDev - width of the Bollinger Bands
//                *    keltStdDev    - width of the Keltner Bands
//                *    momPeriod     - # of bars for Momentum indicator
//                *    momEMA        - EMA of the Momentum indicator
//
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//    Source              :   John Carter, www.TradeTheMarkets.com
//    Interpretation      :    Kris Tokarzewski, Johannesburg, 15-Dec-2006
// AmiBroker Conversion:   Levent Pancuk, 22 Feb-2008
//                         [email protected]
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
_SECTION_BEGIN("TTM Squeeze");


Ticker = ParamStr("Symbol", Name() );
SetForeign(Ticker,True,True);

function Momentum( array, period )
{
  return array - Ref( array, -period );
}



chanPeriod     = Param("Channel Period", 20);
bolBandStdDev  = Param("Bollinger Band StdDev",2);
keltStdDev     = Param("Keltner Band StdDev",1.5);
momPeriod      = Param("Momemtum Period", 12 );
momEMA         = Param("Momentum EMA Period", 5);

highBBChl = BBandTop( C, chanPeriod, bolBandStdDev);
lowBBChl  = BBandBot( C, chanPeriod, bolBandStdDev);

centerLine = MA( C, chanPeriod );
highKeltn  = centerLine + keltStdDev * ATR(chanPeriod);
lowKeltn   = centerLine - keltStdDev * ATR(chanPeriod);

momHist = EMA(Momentum(C, momPeriod),momEMA);

BBUp  = IIf(highBBChl > highKeltn AND momHist > 0, momHist, 0);
BBDo  = IIf(lowBBChl < lowKeltn AND momHist < 0, momHist, 0);
BBMid = IIf(BBUp == 0 AND BBDo == 0, momHist, 0);


Buy  = BBUp;
Sell = BBDo;

Buy = ExRem(Buy,Sell)AND Volume>25000;
Sell = ExRem(Sell,Buy)AND Volume>25000;

Plot(BBUp, "TTM Squeeze - Momentum Up", colorBlue,styleHistogram  | styleThick);
Plot(BBDo, "Momentum Down", colorOrange, styleHistogram  | styleThick);
Plot(BBMid, "Momentum Mid", IIf(BBMid > 0, colorLightBlue, colorBrown), styleHistogram  | styleThick);

_N(Title = StrFormat(Ticker + " -  "+" {{VALUES}}", BBUp, BBDo, BBMid));

PlotShapes( shapeSmallCircle*Buy, colorGreen,0, 0, 0);
PlotShapes( shapeSmallCircle*Sell, colorRed,0, 0, 0);

AlertIf( Buy, "", "Simple text alert", 2 );

_SECTION_END();
 

mohan.sic

Well-Known Member
I know my what my problem is and im gonna stop talking soon and focus on my work.

But to finish what I started, let me state my understanding .... Volatility measures a stock's fluctuation. Implied volatility is a measure of this fluctuation expressed as a percentage. Historical volatility is nothing but a measure of volatility of the past x number of days and is obtained by calculating standard deviations. Therefore, yesterday's volatility will be past data for today while calculating historical volatility. Yesterday's absolute IV number in itself cannot become an absolute HV number because its changing all day( if thats what you think i was implying). Being an options trader, I trusted that you will understand this. But it looks like we are all caught up in the nuances of words. Moreover, you kept insisting that we should compare today's IV with yesterdays.

Edit: Please note that I am never usually condescending with anyone on the forum. However, sometimes if my general tone appears aggressive, please consider that as mostly excitement rather than aggression. :up::up:

cannot write long in middle of trading. sure, I will answer you in evening.
 
is amibroker really useful...better than the charts and tools available on net??
 

Similar threads