News trading cBot
News trading cBot
23 Oct 2015, 12:27
,Hi
(I need to deal with my cBot at the current time (news trading cBot
And I do not understand what is wrong with my cBot
(sometimes is not open position even the current price pass the line in the terms I set and I think maybe I need to use in while loop for deal with the current price more properly and not miss any price level. And in fact I do so but from any reason the cBot don't work properly
Here is my simple News trading cBot. I hope that you can solve things for me.
Thanks!
using System;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
namespace cAlgo.Robots
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class NewsRobot : Robot
{
[Parameter("News Day", DefaultValue = 14, MinValue = 0, MaxValue = 31)]
public int NewsDay { get; set; }
[Parameter("News Hour", DefaultValue = 14, MinValue = 0, MaxValue = 23)]
public int NewsHour { get; set; }
[Parameter("News Minute", DefaultValue = 30, MinValue = 0, MaxValue = 59)]
public int NewsMinute { get; set; }
[Parameter("Pips away", DefaultValue = 0.001)]
public double PipsAway { get; set; }
[Parameter("Gap", DefaultValue = 0.0005)]
public double gap { get; set; }
[Parameter("Take Profit", DefaultValue = 15)]
public int TakeProfit { get; set; }
[Parameter("Stop Loss", DefaultValue = 15)]
public int StopLoss { get; set; }
[Parameter("Volume", DefaultValue = 100000, MinValue = 1000)]
public int Volume { get; set; }
[Parameter("minutes Timeout", DefaultValue = 3, MinValue = 1)]
public int MinutesTimeout { get; set; }
[Parameter("Spread", DefaultValue = 0.0004)]
public double Spread { get; set; }
[Parameter("slippage", DefaultValue = 2)]
public int slippage { get; set; }
private bool time1;
public double priceBid = 0;
public double priceAsk = 0;
private const string Label = "News Robot";
protected override void OnStart()
{
}
protected override void OnTick()
{
var pricetime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, NewsDay, NewsHour, NewsMinute, 0, 0);
if (NewsMinute > 0)
{
pricetime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, NewsDay, NewsHour, NewsMinute - 1, 59, 500);
}
if (NewsMinute == 0)
{
pricetime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, NewsDay, NewsHour - 1, 59, 59, 500);
}
if (DateTime.Now >= pricetime && !time1)
{
priceBid = Symbol.Bid;
priceAsk = Symbol.Ask;
time1 = true;
}
if ((Symbol.Bid > (priceAsk + PipsAway)) && ((Symbol.Bid < (priceAsk + PipsAway + gap)) && Symbol.Spread <= Spread && time1))
{
ExecuteMarketOrder(TradeType.Buy, Symbol, Volume, "buy news order", StopLoss, TakeProfit, slippage);
Stop();
}
if ((Symbol.Ask < (priceBid - PipsAway)) && ((Symbol.Ask > (priceBid - PipsAway - gap)) && Symbol.Spread <= Spread && time1))
{
ExecuteMarketOrder(TradeType.Sell, Symbol, Volume, "sell news order", StopLoss, TakeProfit, slippage);
Stop();
}
if (DateTime.Now >= pricetime.AddMinutes(3))
Stop();
}
}
}
Spotware
23 Oct 2015, 13:01
Dear Trader,
We would like to inform you that we do not provide coding assistance services. We more than glad to assist you with specific questions about cAlgo.API. You also can contact one of our Partners or post a job in Development Jobs section for further coding assistance.
@Spotware