無料でロボットをダウンロードする方法を見る
Twitter上で私たちを見つけてください。
私たちのファンページに参加してください
興味深いスクリプト?
それではリンクにそれを投稿してください。-
他の人にそれを評価してもらいます
記事を気に入りましたか?MetaTrader 5ターミナルの中でそれを試してみてください。
インディケータ

Pivot Point with adjustable closing time - MetaTrader 4のためのインディケータ

ビュー:
43141
評価:
(13)
パブリッシュ済み:
2015.05.27 15:47
アップデート済み:
2021.05.07 19:13
PP.mq4 (23.19 KB) ビュー
このコードに基づいたロボットまたはインジケーターが必要なら、フリーランスでご注文ください フリーランスに移動

PP indicator on daily (weekly, monthly) level, for use in timeframes smaller than daily. I'll skip the part discussing its basic use in trading, you can find that information here: https://en.wikipedia.org/wiki/Pivot_point_(technical_analysis)

Custom deviations from ordinary PP indicators:

  • Sunday bars for those data feeds starting on sundays at 22:00 UTC eliminated.
  • Close time used for calculation is close of 20:00 UTC bar; it is an input variable and can easily be changed when indicator is attached to chart (input int closetime_UTC).

This indicator shows daily PP which are calculated on basis of closing price of a preceding trading days' adjustable hourly bar. This is very useful if you wish to take, for example, New Yorks' closing price and not the rather deliberate one of wherever you live or where your broker operates from. The original settings are designed for UTC time zone.

A special challenge lies in the sunday bars that my broker supplies. They are eliminated in this indicator and are displayed in the same way as mondays.

Often the weekly and monthly PP give additional hints for technical analysis. Therefore it is possible to have them displayed as well (see according input variables). You can also have the midpoints for the current day displayed.

To achieve these premises, the PP are calculated differently for mondays and sundays. The calculation thus determines TimeDayOfWeek in a switch, and the formulae slightly differ from each other as needed. The trick used (of which I'm not sure whether it was smart at all) is to determine the actual amount of bars in the hourly timeframe (variable hshift) until day start. To this hourly shift, the needed amount of hourly bar shift is added in order to get the interesting bar whose closing time is used for PP calculation.

PP indicator in EURUSD h1, you can see that actual weekly PP are wrong.

There is an important restriction to the indicator:

  • As it is calculated on hourly level, it delivers indicator values that are totally off track when the amount of hourly bars that is usually provided is 'used up'. In my case, this is something above three thousand and five hundred hours, but this value might be different with other brokers. In order to keep the chart clean, I decided to let the drawing be cut off before the wrong values start. However, they are still there in the arrays!

I think the code is fairly commented and look forward to your benevolent criticism, in order to improve the indicator. If you like it, please rate the indicator in the Code Base and recommend it to your friends!

ToolBox ToolBox

Gives you information on pip value, spread value, daily pips average, how much you can earn, future range of the present day.

SDX-TzPivots SDX-TzPivots

Calculation of pivot and similar levels based on time zones.

Convert time to double and vice versa Convert time to double and vice versa

Library to convert datetime to double and vice versa.

Linear Momentum Linear Momentum

Simple implementation of physical calculation of Momentum.