© 本贴为 wuwei 原创/首发,严禁抄袭!
此EA比较灵活,可以自己设定止损止盈,比较便捷,可以根据自己的风险承受能力和收益预期来设定,而且可以根据市场的变化来及时调整止损止盈,以求获得最佳的收益。
The advantage of EA with single stop loss and take profit is more flexible, you can set your own stop loss and take profit, which is more convenient. You can set it according to your risk tolerance and expected return. And you can adjust the stop loss and take profit in time according to the market changes to get the best return.
一单一结,单单带止损止盈,源码文件。
类似源码参考:
#include <iostream>
#include <stdio.h>
#include <math.h>
using namespace std;
// 定义止损止盈价格
double stopLossPrice = 0;
double takeProfitPrice = 0;
// 判断是否触发止损止盈
bool isStopLoss(double currentPrice)
{
if(currentPrice <= stopLossPrice)
return true;
else
return false;
}
bool isTakeProfit(double currentPrice)
{
if(currentPrice >= takeProfitPrice)
return true;
else
return false;
}
int main()
{
cout << "请输入止损价格:" << endl;
cin >> stopLossPrice;
cout << "请输入止盈价格:" << endl;
cin >> takeProfitPrice;
double currentPrice;
cout << "请输入当前价格:" << endl;
cin >> currentPrice;
if(isStopLoss(currentPrice))
{
cout << "触发止损!" << endl;
}
else if(isTakeProfit(currentPrice))
{
cout << "触发止盈!" << endl;
}
else
{
cout << "未触发止损止盈!" << endl;
}
return 0;
}
参考完毕!!
此EA用于EURUSD H1。也可以用于USDJPY效果不错。
下面是XAUUSD--H1 一个月测试:
此EA的原理是,它将定期检查市场的行情,并在满足特定条件的情况下建立交易。它可以根据您设定的参数,如止损和止盈等,进行交易。此外,它还可以根据您的交易策略,如趋势交易,跟随交易等,进行交易。
原理很简单,源码自己拿去多研究。。。。。
8币物有所值,Perfect Score...等等用这个原理改写。
|