[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Darvas plugin -Where?



PureBytes Links

Trading Reference Links

Where can I get this plugin from?
TIA
nand





--- In amibroker@xxxx, "nenapacwanfr" <nenapacwanfr@xxxx> wrote:
> Hi,
> the darvas plugin is available,
> it seems correct
> 
> you can find how to use various dll below
> 
> stephane
> 
> ATRBand
> 
> Vased on an Array (High, Low, Close,Open) +/- Atr Value 
> For example H - 3*ATR(10) for Long side
> And L+ 3*ATR(10) for Short side
> 
> Array=H;
> ATRvalue=3*ATR(10); 
> Graph1=AtrBandLong(Array,ATRValue);
> 
> Array=L;
> ATRvalue=3*ATR(10); 
> Graph1=AtrBandShort(Array,ATRValue);
> 
> 
> POWERSAR
> 
> Two acceleration Factor , for Long & Short Side
> 
> Plot(Close,"",1,64);
> Plot(SAR(0.04,0.2),"",2,8+16);
> Plot(Powersar(0.04,0.08,0.2),"",3,8+16);
> 
> Powersar ( Long, Short, max)
> 
> PATTERN
> 
> DarvasBox
> 
> All functions below are available
> Darvas();
> Plot(BoxTopArray,"",4,1);
> Plot(BoxBotArray,"",5,1);
> Plot(Close,"",1,64);
> Plot(Dbuy,"",5,1);
> Plot(Dsell,"",4,1);
> 
> 
> CANDLESTICKS
> 
> All these candlesticks are available
> 
> 
> "CBlack",	{ VBlack, 0, 0, 0, 0, NULL },
> "CWhite",	{ VWhite, 0, 0, 0, 0, NULL },
> "COInside",	{ VCOInside, 0, 0, 0, 0, NULL },
> "CMaruBlack",	{ VMarubozuBlack, 0, 0, 0, 0, NULL },
> "CMaruWhite",	{ VMarubozuWhite, 0, 0, 0, 0, NULL },
> "CDoji",	{ VDoji, 0, 0, 0, 0, NULL },
> "CDojiLg",	{ VDojiLongLegged, 0, 0, 0, 0, NULL },
> "Mp",	{ VMp, 0, 0, 0, 0, NULL },
> "Typ",	{ VTyp, 0, 0, 0, 0, NULL },
> "WC",	{ VWC, 0, 0, 0, 0, NULL },
> "CHammer",	{ VHammer, 0, 0, 0, 0, NULL },
> "CTassement",	{ VBodySmall, 0, 0, 0, 0, NULL },
> "CHammerWhite",	{ VHammerWhite, 0, 0, 0, 0, NULL },
> "CHammerBlack",	{ VHammerBlack, 0, 0, 0, 0, NULL },
> "CInvHammer",	{ VInvHammer, 0, 0, 0, 0, NULL },
> "CInvHammerBlack",	{ VInvHammerBlack, 0, 0, 0, 0, NULL },
> "CInvHammerWhite",	{ VInvHammerWhite, 0, 0, 0, 0, NULL },
> "CSpinningTop",	{ VSpinningTop, 0, 0, 0, 0, NULL },
> "CDojiStarBear",	{ VDojiStarBear, 0, 0, 0, 0, NULL },
> "CDojiStarBull",	{ VDojiStarBull, 0, 0, 0, 0, NULL },
> 
> 
> FORECASTING
> 
> Forecast tomorrow the value of the close for a level of the rsi .
> 
> period=14;
> Level=30;
> Graph0=Close;
> Graph1=RsiF(period,Level);
> 
> For a rsi(14), RsiF(14,30) gives you TODAY the close for tomorrow 
> for a level of 30 of the rsi tomorrow