Видимо автор пытался представить в новом виде индикаторы МАКД 5.34.5 или CCI (30).
Vkorch:
Видимо автор пытался представить в новом виде индикаторы МАКД 5.34.5 или CCI (30).
Люди!Кто пользуется ультра-трендом?Какие параметры?
Видимо автор пытался представить в новом виде индикаторы МАКД 5.34.5 или CCI (30).
extern int RangePeriods=30;
extern double PriceSmoothing=0.3; // =0.67
extern double IndexSmoothing=0.3; // =0.50
extern int DrawType=3; //0Line 1 Sect 2Histo 3Arr
extern int DrawSize=0;
//----
string ThisName="Kuskus_Starlight";
" Kuskus Starlight (Автор: Scriptor)
Индикатор Kuskus Starlight. Не совсем понятно, что автор пытался сделать с индикатором."
тож самое - без понятия
может модификатор прикинул что если хисто будет перерисовыватьсяб, то надо повтыкать стрелочки......
//+------------------------------------------------------------------+ //| Fisher_m11.mq4 | //| Copyright © forexjr //| http://home.arcor.de/cam06/fisher | //+------------------------------------------------------------------+ #property copyright "Copyright © 23.07.2006 MartinG " #property link "http://home.arcor.de/cam06/fisher" #property indicator_separate_window //#property indicator_minimum -1 //#property indicator_maximum 1 #property indicator_buffers 3 #property indicator_color2 RoyalBlue #property indicator_color3 Red #property indicator_width2 0.5 #property indicator_width3 0.5 int LeftNum1=56; int LeftNum2=56; extern int RangePeriods=35; extern double PriceSmoothing=0.3; // =0.67 bei Fisher_m10 extern double IndexSmoothing=0.3; // =0.50 bei Fisher_m10 string ThisName="Fisher_kuskus"; int DrawStart; //---- buffers double ExtMapBuffer1[]; double ExtMapBuffer2[]; double ExtMapBuffer3[]; double ExtMapBuffer4[]; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- indicators IndicatorBuffers(4); SetIndexLabel(0,"Star"); SetIndexStyle(0,DRAW_NONE); SetIndexBuffer(0,ExtMapBuffer1); SetIndexStyle(1,DRAW_HISTOGRAM); SetIndexBuffer(1,ExtMapBuffer2); SetIndexStyle(2,DRAW_HISTOGRAM); SetIndexBuffer(2,ExtMapBuffer3); SetIndexStyle(3,DRAW_NONE); SetIndexBuffer(3,ExtMapBuffer4); string Text=ThisName; Text=Text+" (rPeriods "+RangePeriods; Text=Text+", pSmooth "+DoubleToStr(PriceSmoothing,2); Text=Text+", iSmooth "+DoubleToStr(IndexSmoothing,2); Text=Text+") "; IndicatorShortName(Text); SetIndexLabel(1,NULL); SetIndexLabel(2,NULL); DrawStart=2*RangePeriods+4; // DrawStart= BarNumber calculated from left to right SetIndexDrawBegin(1,DrawStart); SetIndexDrawBegin(2,DrawStart); if (PriceSmoothing>=1.0) { PriceSmoothing=0.9999; Alert("Fish61: PriceSmothing factor has to be smaller 1!"); } if (PriceSmoothing<0) { PriceSmoothing=0; Alert("Fish61: PriceSmothing factor mustn''t be negative!"); } if (IndexSmoothing>=1.0) { IndexSmoothing=0.9999; Alert("Fish61: PriceSmothing factor has to be smaller 1!"); } if (IndexSmoothing<0) { IndexSmoothing=0; Alert("Fish61: PriceSmothing factor mustn''t be negative!"); } //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { if (Bars<DrawStart) { Alert("Fish84: Not enough Bars loaded to calculate FisherIndicator with RangePeriods=",RangePeriods); return(-1); } //---- int counted_bars=IndicatorCounted(); if (counted_bars<0) return(-1); if (counted_bars>0) counted_bars--; //---- int Position=Bars-counted_bars; // Position = BarPosition calculated from right to left int LeftNum1=Bars-Position; // when more bars are loaded the Position of a bar changes but not its LeftNum if (LeftNum1<RangePeriods+1)Position=Bars-RangePeriods-1; while(Position>=0) { CalculateCurrentBar(Position); Position--; } //---- return(0); } //+------------------------------------------------------------------+ //| Single Bar Calculation function | //+------------------------------------------------------------------+ int CalculateCurrentBar(int pos) { double LowestLow, HighestHigh, GreatestRange, MidPrice; double PriceLocation, SmoothedLocation, FishIndex, SmoothedFish; //---- LowestLow = Low[Lowest(NULL,0,MODE_LOW,RangePeriods,pos)]; HighestHigh = High[Highest(NULL,0,MODE_HIGH,RangePeriods,pos)]; if (HighestHigh-LowestLow<0.1*Point)HighestHigh=LowestLow+0.1*Point; GreatestRange=HighestHigh-LowestLow; MidPrice = (High[pos]+Low[pos])/2; // PriceLocation in current Range if (GreatestRange!=0) { PriceLocation=(MidPrice-LowestLow)/GreatestRange; PriceLocation= 2.0*PriceLocation - 1.0; // -> -1 < PriceLocation < +1 } // Smoothing of PriceLocation ExtMapBuffer4[pos]=PriceSmoothing*ExtMapBuffer4[pos+1]+(1.0-PriceSmoothing)*PriceLocation; SmoothedLocation=ExtMapBuffer4[pos]; if (SmoothedLocation> 0.99) SmoothedLocation= 0.99; // verhindert, dass MathLog unendlich wird if (SmoothedLocation<-0.99) SmoothedLocation=-0.99; // verhindert, dass MathLog minuns unendlich wird // FisherIndex if(1-SmoothedLocation!=0) FishIndex=MathLog((1+SmoothedLocation)/(1-SmoothedLocation)); else Alert("Fisher129: Unerlaubter Zustand bei Bar Nummer ",Bars-pos); // Smoothing of FisherIndex ExtMapBuffer1[pos]=IndexSmoothing*ExtMapBuffer1[pos+1]+(1.0-IndexSmoothing)*FishIndex; if (Bars-pos<DrawStart)ExtMapBuffer1[pos]=0; SmoothedFish=ExtMapBuffer1[pos]; if (SmoothedFish>0) // up trend { ExtMapBuffer2[pos]=SmoothedFish; ExtMapBuffer3[pos]=0; } else // else down trend { ExtMapBuffer2[pos]=0; ExtMapBuffer3[pos]=SmoothedFish; } //---- return(0); } //+------------------------------------------------------------------+
marat:
0.0.0.20.2.13.300
Vkorch:
Видимо автор пытался представить в новом виде индикаторы МАКД 5.34.5 или CCI (30).
Люди!Кто пользуется ультра-трендом?Какие параметры?Видимо автор пытался представить в новом виде индикаторы МАКД 5.34.5 или CCI (30).
Для MARATA: Держи 0.0.0.20.2.13.300.
Vic:
Для MARATA: Держи 0.0.0.20.2.13.300.
извени, не понятно_Прогрессион?,Лен?Сенситивити? и как какой тайм?
Для MARATA: Держи 0.0.0.20.2.13.300.
marat:
все вопросы не по теме задаются в этой ветке (!?)
Vic:
Для MARATA: Держи 0.0.0.20.2.13.300.
извени, не понятно_Прогрессион?,Лен?Сенситивити? и как какой тайм?Для MARATA: Держи 0.0.0.20.2.13.300.

Вы упускаете торговые возможности:
- Бесплатные приложения для трейдинга
- 8 000+ сигналов для копирования
- Экономические новости для анализа финансовых рынков
Регистрация
Вход
Вы принимаете политику сайта и условия использования
Если у вас нет учетной записи, зарегистрируйтесь
Kuskus Starlight:
Author: John Smith