天泓评测

天泓评测
投资也是一种修行~

作者

本站作者天泓评测 共计发布文章1691篇

EA

iDeMarker()使用示例:Coramac

阅读(1480)评论(0)

extern double lStopLoss = 20; extern double sStopLoss = 20; extern double Lots = 0.1; //+------------------------------------------------------------------+ //| ...

EA

RSI trader v0.15

阅读(1752)评论(0)

// \\|// +-+-+-+-+-+-+-+-+-+-+-+ \\|// // ( o o ) |T|r|a|d|e|r|S|e|v|e|n| ( o o ) // ~~~~oOOo~(_)~oOOo~~~~ ...

EA

NY breakout v0.11

阅读(2064)评论(0)

// \\|// +-+-+-+-+-+-+-+-+-+-+-+ \\|// // ( o o ) |T|r|a|d|e|r|S|e|v|e|n| ( o o ) // ~~~~oOOo~(_)~oOOo~...

指标

Camarilla-MT04-Ind_MBB

阅读(1262)评论(0)

一看到Camarilla就知道搞RS阻力/支撑线的,果然是 #property indicator_chart_window //+------------------------------------------------------------------+ //| Custom indicator initialization fu...

EA

HedgeHog

阅读(1298)评论(0)

使用全局变量操作 //---- input parameters extern int Start=0; extern int TakeProfit=14; extern double Lots=1; //+------------------------------------------...

指标

经典的OsMA

阅读(1430)评论(0)

//---- indicator settings #property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 Silver //---- indicator parameters extern int FastEM...

函数

图表中间放置物件的示范

阅读(1474)评论(0)

//---- external parameters ------------------------------------------+ extern int Window_Index = 0; // index of window: 0 = main chart extern string TxtMessage = "This ...

指标

SmoothCandle S v1.00

阅读(1245)评论(0)

//---- indicator settings #property indicator_separate_window #property indicator_buffers 4 #property indicator_color1 Red #property indicator_color2 DimGray #property ...

指标

CandleAverage v3

阅读(1523)评论(0)

这个写法有独特的地方 #property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 Blue //---- input parameters extern int Length=31; exte...

EA

20-200 ATR

阅读(1649)评论(0)

一个经典的20-200系统EA extern int TakeProfit = 200; // 止盈 //extern int StopLoss = 2000; // 止损 extern int ATR_PERIOD=14; extern double ATRSL=2; extern int TradeTime=18; extern...