发表于:2011-01-06 08:27只看该作者
2楼
应该不行的 货币对前后很讲究的
韬客社区www.talkfx.co
发表于:2011-01-06 08:28只看该作者
3楼
其他软件坐标反转功能
发表于:2011-01-06 08:29只看该作者
4楼
同花顺就可以。
韬客社区www.talkfx.co
5楼
OK
MT4如此强大却不能实现
怪可惜的
发表于:2011-01-06 10:17只看该作者
6楼
把显示器倒过来
韬客社区www.talkfx.co
发表于:2011-01-06 12:34只看该作者
7楼
.:lol .
发表于:2011-01-06 13:08只看该作者
8楼
光研究的话这个服务器有chfusd的走势图,216.93.180.133:443
BroCo外汇 期货 每盘 股指 ,用指标实现的话可以考虑下面的指标。
//+------------------------------------------------------------------+
//| Heiken Ashi.mq4 |
//| Copyright c 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
//| For Heiken Ashi we recommend next chart settings ( press F8 or |
//| select on menu 'Charts'->'Properties...'): |
//| - On 'Color' Tab select 'Black' for 'Line Graph' |
//| - On 'Common' Tab disable 'Chart on Foreground' checkbox and |
//| select 'Line Chart' radiobutton |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Turquoise
#property indicator_color2 Orange
#property indicator_color3 Turquoise
#property indicator_color4 Orange
//#property indicator_color3 Yellow
//---- buffers
double ExtMapBuffer1;
double ExtMapBuffer2;
double ExtMapBuffer3;
double ExtMapBuffer4;
int n;
//double ExtMapBuffer3;
//----
int ExtCountedBars=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//|------------------------------------------------------------------|
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,3);
SetIndexBuffer(0, ExtMapBuffer1);
SetIndexStyle(1,DRAW_HISTOGRAM,STYLE_SOLID,3);
SetIndexBuffer(1, ExtMapBuffer2);
SetIndexStyle(2,DRAW_HISTOGRAM,STYLE_SOLID,1);
SetIndexBuffer(2, ExtMapBuffer3);
SetIndexStyle(3,DRAW_HISTOGRAM,STYLE_SOLID,1);
SetIndexBuffer(3, ExtMapBuffer4);
//SetIndexStyle(2,DRAW_ARROW);
//SetIndexArrow(2,158);
//SetIndexBuffer(2, ExtMapBuffer3);
//----
//SetIndexDrawBegin(0,10);
//SetIndexDrawBegin(1,10);
//SetIndexDrawBegin(2,10);
//---- indicator buffers mapping
//SetIndexBuffer(2,ExtMapBuffer3);
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//---- TODO: add your code here
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
if(Bars<=10) return(0);
//+++++++++++++++++++++++++++++++++++++++++++++++++++++
int pos=0;
n=WindowBarsPerChart();
while(pos
发表于:2011-01-06 13:10只看该作者
9楼
很久没有在韬客发帖了,上传附件、上传图都不会了,没法上传压缩文件和图,见谅。
发表于:2011-01-06 13:23只看该作者
10楼
上面的指标可以把走势图反转过来吗?
11楼
13楼
OK,行了
在主窗口形成K线倒图形
如果能形成line线图形,并去掉原线就好了
谢啊
发表于:2011-01-08 10:42只看该作者
15楼
发表于:2011-01-10 05:45只看该作者
16楼
:) :) :) :) :) :)