基于Metatrader 5的标准指标的市场状况评估 - 页 228

 
Sergey Golubev:

它已经创建。

- 修正了警告模式下的警报,此外,你可以指定暂停时间(秒)和信号后的警报次数(仅适用于警告警报)。

- 增加了AutoPeriodsDetect参数:指标在H1和较小的时间框架中自动 设置为9/26/52,而在H2和较大的时间框架中自动 设置为72/144/288。因此,不需要在相关设置中做任何改变。

我现在正在测试该指标

PS.指标已经上传,这个 "链接帖子 "已被编辑。

是否有最新的版本,我想试试这个?

 
GodAtum:

是否有最新的版本,很想试试这个?

哪个帖子?
因为这里有228页...

 
Sergey Golubev:

哪个帖子?
因为这里有228页...

https://www.mql5.com/en/forum/9773/page55#comment_540972

有v11,是最新的吗?

Market Condition Evaluation based on standard indicators in Metatrader 5
Market Condition Evaluation based on standard indicators in Metatrader 5
  • 2013.07.05
  • www.mql5.com
I just started this thread as a continuation of the talking made on this topic (we can read it). Or...
 

是的,我找到了--第547号 帖子

我现在就去检查(应该是最新的,没有错误......但我会检查)。

 

它在MetaEditor中编译时没有错误(所以看起来--它是最新的版本)。


 

设置/参数 -

input int      Tenkan            =     9;    // Tenkan-sen
input int      Kijun             =    26;    // Kijun-sen
input int      Senkou            =    52;    // Senkou Span B
input bool     AutoPeriodsDetect =  true;
input int      SignalMode        =     4;    // Signal Mode: 0-off,1-Tenkan/Kijun,2-Chinkou/Cloud,3-Chinkou/Price,4-all together
input int      AlertMode         =     4;    // Alert Mode: 0-off,1-Tenkan/Kijun,2-Chinkou/Cloud,3-Chinkou/Price,4-all together
input int      WarningMode       =     1;    // Warning Mode: 0-off,1-on
input int      SoundsNumber      =     1;    // Number of sounds after Signal
input int      SoundsPause       =     5;    // Pause in sec between sounds 
input string   UpSound           = "alert.wav";
input string   DnSound           = "alert2.wav";

关于交易、自动交易系统和测试交易策略的论坛

基于Metatrader 5的标准指标的市场状况评估

Sergey Golubev, 2013.07.09 17:13

它被创建了。

- 警告模式下的警报被固定,此外--你可以指定暂停时间(秒),以及信号后的警报数量(仅适用于警告警报)。

-增加了AutoPeriodsDetect参数:指标在H1和较小的时间框架下自动 设置为9/26/52,在H2和较大的时间框架 自动设置72/144/288。因此,不需要改变任何有关设置。

...

void OnInit()
{
   if(Period() <= PERIOD_H1 && AutoPeriodsDetect)
   {
   tenkan = 72; kijun = 144; senkou = 288;   
   }
   else
   {
   tenkan = Tenkan; kijun = Kijun; senkou = Senkou;
   }
 

它是有效的,但它在图表上保留了所有的历史信号,所以在这种情况下,指标需要被固定。


 

这是非常有趣的EA -

----------------

Hammer_v1- MetaTrader 5的专家

Hammer_v1 - MetaTrader 5的专家

This advisor is an advisor assistant in manual trading. Powered by rebound from levels. The levels here are the horizontal line objects that the user draws manually on the chart. It is allowed to use one object for opening BUY positions and one for opening SELL positions. The main thing is that the names of the objects Horizontal lines correspond to the specified parameters HLine Buy Level name and HLine Sell Level name .

当当前价格高于HLine对象,卖出水平名称是一个信号,打开一个卖出的位置。同时,将对象 HLine Sell Level 名称移至 HLine 的 Step pips 以上。当当前价格低于HLine Buy Level对象时,我们以类似的方式行事。 名称是开立购买头寸的信号。同时,我们将HLine买入水平对象LevelBELOW移动到HLine的Step pips上。

 
Sergey Golubev:

你好,Sergey,我们可以得到你的年度中枢点吗?
 
OrelMely:
你好,Sergey,我们可以得到你的年度枢轴点吗?

哪个年度枢轴点?
我有很多指标在我的Metatrader中,而且我不是一个编码员...

原因: