Schau, wie man Roboter kostenlos herunterladen kann
Finden Sie uns auf Twitter!
und werden Sie Mitglied unserer Fangruppe
und werden Sie Mitglied unserer Fangruppe
Interessantes Skript?
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Hat Ihnen das Skript gefallen?
Bewerten Sie es im Terminal MetaTrader 5
Bewerten Sie es im Terminal MetaTrader 5
- Ansichten:
- 10288
- Rating:
- Veröffentlicht:
- 2016.09.29 17:09
- Aktualisiert:
- 2016.11.22 07:32
-
Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum Freelance
Fast time range checking function. Doesn't use slow string parsing.
Function returns TRUE if time in range, FALSE otherwise.
Usage:
Drop .mq4 file to MQL4\Libraries\ folder.
Add this line inside your EA:
#include "..\libraries\time_in_range.mq4"There are three versions of the function:
1. With separated hours and minutes input. Example:
if(TimeInRange(TimeCurrent(),23,00,02,15)) { /* trade */ } // checks if current time is in range 23:00-02:15
2. With fractional hours input. Example:
if(TimeInRange(TimeCurrent(),05.50,09.25)) { /* trade */ } // checks if current time is in range 05:30-09:15Please note that fractional part represents whole hour.
3. With time coded in single variable:
if(TimeInRange(TimeCurrent(),0200,0835)) { /* trade */ } // checks if current time is in range 02:00-08:35

The script modifies all orders (market and pending) on the symbol with specified Take Profit and Stop Loss.

Buy or sell just by looking at the "arrow" as a signal. Very easy and simple.

Renko chart generator using the tick values.

Two EA's. One places Stop orders the other places Limit orders.