거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
9378
평가:
(6)
게시됨:
2008.05.07 07:38
업데이트됨:
2016.11.22 07:32
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동


Author:

Suggested by Malish https://www.mql5.com/ru/forum/108241/page3


Description:

The script is aimed at studying price levels on a randomly selected bar of the main chart by drawing a series of horizontal lines that are at a certain-percentage distance from the price (see image below).

Position is that the bar CLOSE price, on the basis of which the lines are built, is selected by user by moving the vertical line named StartML.


The script is similar to Fibo Lines.

Below are its differences:

- the line levels are set in percents of the distance from the bar close price. Here, we have set: 0.4, 0.6, 0.8, 1, 1,2, 1,4 %

- the lines are drawn in two sets: symmetrically upwards and downwards

- the script draws a series of horizontal lines of the TrendLine type,

The levels are drawn by objects TrendLine to facilitate the line length controlling. The "ray" property is controlled from external variables.




Instruction:

The script is placed in the folder named 'scripts', then compiled and launched manually, where necessary.

At the first start, vertical line StartML appears.

You should change the position of the vertical line and restart the script.

On smaller timeframes, the percentage lines may exceed the bounds of the screen. You should catch the right edge of the screen with the left button of your mouse and the select a scale by moving the mouse up/down.



Recommendations:

1. For practical use: The "Properties" tab does not appear when you call to the script. It means that percentage levels will be rigidly defined at translation.

extern double percent_lev1=0.4;
extern double percent_lev2=0.6;
extern double percent_lev3=0.8;
extern double percent_lev4=1;
extern double percent_lev5=1.2;
extern double percent_lev6=1.4;

2. To adjust your trading strategy by fitting of percentage ratios, remove the "//" characters from the line #property show_inputs, and then compile it.










MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/8113

ZZ_All Quotings 0-0080 ZZ_All Quotings 0-0080

A script aimed at loading of history for all available currency pairs, metals, indexes, CFD, and at checking of history for "holes".

Flatter_V1 Flatter_V1

The script places stop orders. The orders are placed for the market/pending orders specified in custom variables High (variable Hi) and Low (variable Lo).

PrintText PrintText

A toy script that demonstrate the way of displaying some text information in a chart.

Indicator Impulse CDC (Color) Indicator Impulse CDC (Color)

Indicator Impulse CD (Color) is a sequel of impulse approach. By users' requests, colors and signal line are added.