b*******x 发帖数: 2469 | 1 viewer:
全部选DDE command
三个commands分别是:
[DocOpen("%bm.pdf")][FileOpen("%bm.pdf")]
[DocOpen("%bm.pdf")][FileOpen("%bm.pdf")]
[DocClose("%bm.pdf")] |
|
|
m********0 发帖数: 2717 | 3 送你一个EA,(copyright "Andrew Whaley")
专门从MT下载intraday data的。
别搞这么恶心的标题了。
//+---------------------------+
//| Historic Data Dumping EA |
//+---------------------------+
#property copyright "Andrew Whaley"
extern int min_year = 2010;
extern int max_year = 2012;
// Global scope
int handle;
int init()
{
int p = Period();
string pd;
if (p == 1) pd = "M1";
else if (p == 5) pd = "M5";
else if (p == 15) pd = "M15";
else if (p == 30) pd = "M30";
else if (p == 60) pd = "H1";
else if ... 阅读全帖 |
|
m*********e 发帖数: 121 | 4 我用beamer 做slides, 要build pdf file 的时候老是说
[DocOpen("%bm.pdf")][FileOpen("%bm.pdf")]
Cannot Execute the Command.
查了查网上,说可能 path of executable 错了。可是我看了,没错,而且我写文章没
问题,就是要做slides 的时候有问题。
明天present,请帮一下忙,谢谢。 |
|
m*********e 发帖数: 121 | 5 我用beamer 做slides, 要build pdf file 的时候老是说
[DocOpen("%bm.pdf")][FileOpen("%bm.pdf")]
Cannot Execute the Command.
查了查网上,说可能 path of executable 错了。可是我看了,没错,而且我写文章没
问题,就是要做slides 的时候有问题。
明天present,请帮一下忙,谢谢。 |
|