Guarda come scaricare robot di trading gratuitamente
Ci trovi su Facebook!
Unisciti alla nostra fan page
Unisciti alla nostra fan page
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
- Visualizzazioni:
- 5937
- Valutazioni:
- Pubblicato:
- 2008.07.10 09:11
- Aggiornato:
- 2016.03.10 08:54
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
////////////////////////////////////////////////////////////// // // YURAZ yzh mail ru // // the function will return // true - summer time // false - winter time // // revert to standard time at night of the last Sunday of OCTOBER // switch to daylight saving time at night of the last Sunday of MARCH // bool TimeWinter(datetime dt) { int i; if ( TimeMonth(dt) >= 11 || TimeMonth(dt) <= 2 ) // WINTER { return(false); // Winter } if ( TimeMonth(dt) >= 4 && TimeMonth(dt) <= 9) // SUMMER { return(true); // Summer } // It can't be helped, let's determine datetime tSeek; string sTIM; if ( TimeMonth(dt) == 10 ) // october { if ( TimeDay(dt) >= 20 ) // at night of the last sunday of october - revert to standard time { tSeek = StrToTime( StringTrimRight(StringTrimLeft(DoubleToStr(TimeYear(dt),0)))+".10.31"); // determine the last day of october // search for the first sunday from the end for ( i = 31; i >= 20; i-- ) { if ( TimeDayOfWeek(tSeek) == 0 ) { break; // found the last sunday of october } tSeek = tSeek - 86400; // another day } if ( dt >= tSeek ) // already standard time { return(false); // yes winter } } return(true); } if ( TimeMonth(dt) == 3 ) // march { if ( TimeDay(dt) >= 20 ) // at night of the last sunday of march - switch to daylight saving time { tSeek = StrToTime( StringTrimRight(StringTrimLeft(DoubleToStr(TimeYear(dt),0)))+".03.31"); // determine the last day of march for ( i = 31; i >= 20; i-- ) { if ( TimeDayOfWeek(tSeek) == 0 ) // search for the first sunday from the end { break; // found the last sunday of march } tSeek = tSeek - 86400; // another day } if ( dt >= tSeek ) // already daylight saving time { return(true); // already summer } } return(false); } }
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/7357

An oscillator that signals in case of trend changing.

A script for valuation of trades history that is uploaded to the client terminal. The valuation is performed in points.

An update for the BW MFI with the displaying of volumes.

Indicator T3.Lnx. It uses signals Heiken Ashi.