Astro Indicators Indicator For MT5
Table Of Contents:
- Astro Indicators Indicator For MT5
- Instalowanie Astro Indicators Indicator For MT5
- Parametry Astro Indicators Indicator For MT5
- Bufory słowa Astro Indicators Indicator For MT5
- Główne części Kodeksu
Astro Indicators Indicator For MT5 próbuje wyjaśnić ruchy rynku wraz z cyklem słońca i księżyca. Cykle te mają wpływ na ludzi, więc ten wskaźnik oczekuje odzwierciedlenia cykli w ruchach cen.
Instalowanie Astro Indicators Indicator For MT5
Po pobraniu wskaźnika za pomocą powyższego formularza musisz rozpakować plik zip. Następnie musisz skopiować plik bodyposition.mq5 do folderu MQL5Indicators instalacji MT5 . Następnie uruchom ponownie MT5, a wtedy będziesz mógł zobaczyć wskaźnik na liście wskaźników.
Parametry Astro Indicators Indicator For MT5
Astro Indicators Indicator For MT5 1 Astro Indicators Indicator For MT5 ma parametry 1 do skonfigurowania.
input bool Geocentric=true; // geocentric view
Bufory słowa Astro Indicators Indicator For MT5
Astro Indicators Indicator For MT5 zapewnia bufory 9 .
SetIndexBuffer(0,Moon,INDICATOR_DATA); SetIndexBuffer(1,Mercury,INDICATOR_DATA); SetIndexBuffer(2,Venus,INDICATOR_DATA); SetIndexBuffer(3,Mars,INDICATOR_DATA); SetIndexBuffer(4,Jupiter,INDICATOR_DATA); SetIndexBuffer(5,Saturn,INDICATOR_DATA); SetIndexBuffer(6,Uranus,INDICATOR_DATA); SetIndexBuffer(7,Neptune,INDICATOR_DATA); SetIndexBuffer(8,Pluto,INDICATOR_DATA);
Główne części Kodeksu
int OnCalculate(const int rates_total, const int prev_calculated, const datetime &time[], const double &open[], const double &high[], const double &low[], const double &close[], const long &tick_volume[], const long &volume[], const int &spread[]) { double a[6]; for( int i=prev_calculated; i lt rates_total && !IsStopped(); i++) { calculate(time[i],SE_MOON,a,flag); Moon[i]=a[0]; calculate(time[i],SE_MERCURY,a,flag); Mercury[i]=a[0]; calculate(time[i],SE_VENUS,a,flag); Venus[i]=a[0]; calculate(time[i],SE_MARS,a,flag); Mars[i]=a[0]; calculate(time[i],SE_JUPITER,a,flag); Jupiter[i]=a[0]; calculate(time[i],SE_SATURN,a,flag); Saturn[i]=a[0]; calculate(time[i],SE_URANUS,a,flag); Uranus[i]=a[0]; calculate(time[i],SE_NEPTUNE,a,flag); Neptune[i]=a[0]; calculate(time[i],SE_PLUTO,a,flag); Pluto[i]=a[0]; } return(rates_total); }