Topics
Replies
noppanon
01 Jul 2020, 17:44
RE:
noppanon said:
Here is full sample code.
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; using System.Runtime.InteropServices; using System.Reflection; namespace cAlgo { [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class RSIArrow : Indicator { [Parameter("Source")] public DataSeries Source { get; set; } [Parameter("Period", DefaultValue = 9, MinValue = 1)] public int Period { get; set; } [Output("Result", LineColor = "DarkGreen")] public IndicatorDataSeries Result { get; set; } [Output("Result2", LineColor = "Blue")] public IndicatorDataSeries Result2 { get; set; } protected RelativeStrengthIndex Indy; protected Bars Barz; public IndicatorDataSeries Divergence; protected override void Initialize() { Barz = MarketData.GetBars(TimeFrame, SymbolName); Indy = Indicators.RelativeStrengthIndex(Source, Period); } public override void Calculate(int index) { Result[index] = Indy.Result[index]; Result2[index] = Indy.Result[index] * 1.1; } } }
@noppanon
noppanon
20 Jun 2019, 15:30
Hi Panagiotis,
Thanks for quickly reply. Please see my questions below
1. On 3.5 ExecuteMarketOrder, if market is very volatile and price move very quickly, what is expected behavior of new command if no market range to bound the entry price?
2. On 3.5 ExecuteMarketRangeOrder parameters,
- what is the relationship between price base and marketRangePips?
- how should we define value of pricebase? The 3.3 does not need to submit any price.
Thanks in advance
Noppanon
@noppanon
noppanon
08 Apr 2019, 17:52
RE:
Panagiotis Charalampous said:
Hi lec0456,
Can you share a cBot that reproduces this message?
Best Regards,
Panagiotis
Hi Panagiotis,
I think I can reproduce this problem. I got the same error message "Symbol "xxxyyy" has no quote" when accessing Symbol. Here is the steps.
1. Make sure that your bot has a method call Symbol. I had tried Symbol.Code and Symbol.ToString(). Both of them give same error.
2. Use your custom workspace
3. Start your bot normally with your Live account.
4. Turn off Wifi and wait until you have "no internet connection"
5. Turn on Wifi.
6. Your bot will resume normally.
7. Stop your bot.
8. Switch to Demo account
9. Start your same bot. You will get the error "Symbol "xxxyyy" has no quote"
10. Problem will be away if you restart cTrader.
Note: the account can be Demo and then Live, or from Live to Demo. Switching from Demo to Demo can not produce error.
I can reproduce this error after your freshly upgrade in this morning.
Regards,
Noppanon
@noppanon
noppanon
16 Mar 2019, 03:00
( Updated at: 21 Dec 2023, 09:21 )
Hi Panagiotis,
I tried to use DrgStart and DragEnd. But it does not work. When I drag a line, there is no event called back. But I drag a chart, the drag evetns get call. see the image and modified code below.
Do I misundertand anything?
Regards,
Noppanon
using System; using System.Linq; 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 DragLine2 : Robot { [Parameter("Distance 1", DefaultValue = 10.0, MinValue = 1.0, Step = 1.0)] public double Distance1Param { get; set; } ChartHorizontalLine TargetLine1; // Chart decoration information when alert is triggered private string ChartID1; private readonly Color AlertColor1 = Color.Khaki; private readonly LineStyle AlertLineStyle = LineStyle.LinesDots; private readonly int AlertLineThick = 2; protected override void OnStart() { ChartID1 = "Target1"; double distance1; distance1 = (Symbol.Bid + Symbol.Ask) / 2 + (Distance1Param * Symbol.PipSize); Print("Distance 1 = {0}", distance1); if (RunningMode != RunningMode.Optimization) { TargetLine1 = Chart.DrawHorizontalLine(ChartID1, distance1, AlertColor1, AlertLineThick, AlertLineStyle); TargetLine1.IsInteractive = true; TargetLine1.Comment = "line 1"; Chart.ObjectSelectionChanged += OnObjectSelected; Chart.DragStart += OnDragStart; Chart.Drag += OnDrag; Chart.DragEnd += OnDragEnd; } } protected override void OnStop() { Chart.RemoveObject(TargetLine1.Name); } private void OnDragStart(ChartDragEventArgs args) { Print("Start drag line {0} Y = {1}", args.ToString(), args.YValue); } private void OnDrag(ChartDragEventArgs args) { Print("Dragig line {0} Y = {1}", args.ToString(), args.YValue); } private void OnDragEnd(ChartDragEventArgs args) { Print("End drag line {0} Y = {1}", args.ToString(), args.YValue); } private void OnObjectSelected(ChartObjectSelectionChangedEventArgs args) { ChartObject line = args.ChartObject; if (args.IsObjectSelected) { if (line.Name == TargetLine1.Name) { Print("Selecte Target Line 1 {0}", args.ChartObject.Comment); } } else { if (line.Name == TargetLine1.Name) { Print("UNselect Target Line 1 {0}", args.ChartObject.Comment); } } } } }
@noppanon
noppanon
05 Sep 2018, 11:44
Hi Panagiotis,
Thanks for your suggestion. I think I should restate my problem.
I found cTrader has inconsitancy behavior which relates to symbol, backtest vs. live and number of decimal points in stop loss & take profit when submitting PlaceStopOrder
1. Bot will return "Invalid Request" if and only if symbol is XAUUSD, XAUEUR and take profit / stop loss has decimal points on live trade. The workaround is making sure take profit / stop loss has ZERO decimal point.
2. Bot will work fine if and only if symbol is XAUUSD, XAUEUR and take profit / stop loss has decimal points (no matter how many decimal) on back testing.
3. Bot will work fine if and only if symbol is EURUSD, GBPUSD, XAUAUD. on both backtest and live, no matter take profit / stop loss has decimal point.
So is it the known problem and pending to fix in the future?
Regards,
Noppanon
@noppanon
noppanon
01 Sep 2018, 19:30
Hi Panagiotis,
It may not work to round take profit to symbol digits because
1. Symbol.Digits of XAUUSD is "2", so round to 2 decimal point, it will fail
2. On PlaceStopOrder, it takes stop loss and take profit as number of pips, not a price. While ModifyPosition takes stop loss and take profit as price.
Regards,
Noppanon
@noppanon
noppanon
31 Aug 2018, 15:51
Hi,
Now I can reproduce the problem. It relates to symbol and take profit or stop loss has decimal points with conditions.
According to the code below,
This code works with EURUSD, GBPUSD, XAUAUD. on both backtest and live, no matter take profit / stop loss has decimal point
This code works with XAUUSD, XAUEUR. on backtest no matter take profit / stop loss has decimal point .
This code does NOT work on live if symbol is XAUUSD, XAUEUR and take profit / stop loss has decimal points.
I didn't test all symbols. Just pick the symbol I trade.
Regards,
Noppanon
using System; using System.Linq; 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 DecimalTP : Robot { [Parameter("Take Profit", DefaultValue = 0.0)] public double TakeProfit { get; set; } [Parameter("Stop Loss", DefaultValue = 0.0)] public double StopLoss { get; set; } protected override void OnStart() { TradeResult r; double p = 5.0 * Symbol.PipSize; r = PlaceStopOrder(TradeType.Sell, Symbol, 1000, Symbol.Bid - p, "test", StopLoss, TakeProfit); if (r.IsSuccessful) { Print("Successfully submit {0} order target price {1} SL {2} TP {3}", r.PendingOrder.TradeType, r.PendingOrder.TargetPrice, r.PendingOrder.StopLossPips, r.PendingOrder.TakeProfitPips); } else { Print("Fail to submit {0} order target price {1} SL {2} TP {3}", r.PendingOrder.TradeType, r.PendingOrder.TargetPrice, r.PendingOrder.StopLossPips, r.PendingOrder.TakeProfitPips); } } } }
@noppanon
noppanon
05 Mar 2021, 10:38
Hi,
Thank you very much for your confirmation.
Best regards,
Noppanon
@noppanon