Topics
Replies
trend_meanreversion
31 Jan 2016, 14:10
( Updated at: 21 Dec 2023, 09:20 )
Good news to existing AUD bot holders :) . We have released the new V2 for the bot and all would have received a free copy as agreed.
Here is the backtest from 19 Jan 2014 - 29 Jan 2016 ( ICMarkets ECN )
Also, i have released a trail version which you is valid till 6 Feb , so feel free to test it . You can find the related link here -> http://www.forexfactory.com/showthread.php?t=570825
@trend_meanreversion
trend_meanreversion
29 Jan 2016, 12:19
RE: RE:
Strong finish for Jan month ..Here is the performance ( http://www.myfxbook.com/members/TRMR/cfd-bot/1459477 )
Dec : +1.95%
Jan : +3.15%
Looking forward to Feb month now..Bot is expecting better than expected. I hope it keeps it performing like this :)
@trend_meanreversion
trend_meanreversion
28 Jan 2016, 13:47
( Updated at: 21 Dec 2023, 09:20 )
RE: RE:
loryy69 said:
trend_meanreversion said: This robot does not work
Hi Everyone,
I have recently built a bot in cAlgo which is showing promising results in back testing using tick data and no martingaling. It works best with AUDUSD (as i was able to detect an unique pattern) and i have been testing it in live environment with very similar results.
I have one more bot on an Index CFD, again with tick data back testing results with no martingaling which is also live with very similar results as in back testing. Please find the back-testing results of them below.
Both of these bots are realistic and have high risk reward as i always seek at least 2 or 3:1 annualized return to max DD . This allows one to leverage if needed without blowing their accounts within limited risk appetite.
From 19 Jan 2014 - 15 Dec 2015
Total Return : 30%
Max DD : 6%
From 19 Jan 2014 - 15 Dec 2015
Total Return : 47%
Max DD : 6%
If anyone is interested in them, then please contact me "trend_meanreversion@yahoo.com"
Hi Lorry69,
You just created your profile and are just acting as typical troller. You don't have even slightest idea about the bots or indicators or even trading i suppose. You haven't bot the indicators or bot and are able to comment that it doesn't work. And to add to your audacity , you are adding other members name and responding as if they responded saying it doesn't work like "GS66 said:this robot does not work"
You should really seek some help and try not to invade on other members forums.
@trend_meanreversion
trend_meanreversion
28 Jan 2016, 13:25
RE:
trend_meanreversion said:
Good start of the month ..CFD Bot up 1.3% in Jan ( Let's not jinx it ! )
1 more day left and we are up +2.8% in Jan . I will update the performance tomorrow for Jan but it is looking great !
@trend_meanreversion
trend_meanreversion
15 Jan 2016, 01:40
( Updated at: 21 Dec 2023, 09:20 )
RE:
lorddevil said:
Look that's a snapshot from now... I mean we have a discrepancy of only 300k Pounds and 500k Euro... and if you follow the view... its always almost the same (surely it changes a bit)- but for me this doesn't look any useful... so where is the catch?
Or am I seeing something wrong here, but shouldn't we see much bigger differences between sell and buy positions in volumes?
Lorddevil, i have access to real price feeds from banks and i can see that even in those there is pretty much balanced buy and sell volume ( approx) at any point in time so cTrader Standard DOM looks fine to me. [ i don't know how to use that information successfully for my trading though yet ] . There is normally a minimum commitment from a LP to provide quotes for 'X' volume so it am not surprised to see pretty balanced order book. I suppose only Spotware team can clarify the technical side of it.
@trend_meanreversion
trend_meanreversion
14 Jan 2016, 13:39
RE:
tommy.994 said:
This is a simple Martingala system with the command to open a trade only if the spread is less than "0,006" (0.6 in USD/JPY for example), but it don't work!
The code seems correct, I can't find the problem!
using System; using System.Linq; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.Indicators; using System.Diagnostics; using System.Threading; namespace cAlgo { [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class HEREHEREHERE : Robot { [Parameter("Initial Volume", DefaultValue = 1000, MinValue = 0)] public int InitialVolume { get; set; } [Parameter("Stop Loss", DefaultValue = 3)] public int StopLoss { get; set; } [Parameter("Take Profit", DefaultValue = 3)] public int TakeProfit { get; set; } [Parameter("Delay minute", DefaultValue = 1)] public int Minute { get; set; } private Random random = new Random(); //----------------------------------------------------------- protected override void OnStart() { Positions.Closed += OnPositionsClosed; if (Symbol.Spread < 0.006) { Positions.Closed += OnPositionsClosed; Order1(); } if (Symbol.Spread > 0.006) { var stopwatch = Stopwatch.StartNew(); System.Threading.Thread.Sleep(Minute * 600); Console.WriteLine(stopwatch.ElapsedMilliseconds); OnStart(); } } //----------------------------------------------------------- private void Order1() { ExecuteOrder(InitialVolume, GetRandomTradeType()); } //----------------------------------------------------------- private void ExecuteOrder(long volume, TradeType tradeType) { var result = ExecuteMarketOrder(tradeType, Symbol, volume, "Martingale", StopLoss, TakeProfit); if (result.Error == ErrorCode.NoMoney) Stop(); } //----------------------------------------------------------- private void OnPositionsClosed(PositionClosedEventArgs args) { Print("Closed"); var position = args.Position; { if (position.Label != "Martingale" || position.SymbolCode != Symbol.Code) return; if (position.Pips > 0) Order1(); if (position.GrossProfit > 0) { ExecuteOrder(InitialVolume, GetRandomTradeType()); } else { ExecuteOrder((int)position.Volume * 2, position.TradeType); } } } private TradeType GetRandomTradeType() { return random.Next(2) == 0 ? TradeType.Buy : TradeType.Sell; } } }
Are you trying to run it on USDJPY ? The spread on USDJPY must be of order of 0.6 , 0.8 types so it is indeed never less than "0.006" so it is not falling in your "IF" condition block. Always use condition like this
If( Symbol.Spread < 6 * Symbol.Pipsize ) {
// do something
}
@trend_meanreversion
trend_meanreversion
14 Jan 2016, 13:35
( Updated at: 21 Dec 2023, 09:20 )
My humble 2 cents lorddevil on this issue..i think you are looking at vWAP DOM view which shows same volume on both sides because that's what it should reflect ie..vWAP price for a given volume on each side.
vWAP mode
Standard Mode -> This shows the real ECN volume as per brokers LPs. Unfortunately it is aggregated at volume level so you can't distinguish it it is coming from LP1 or LP2 or combination of both.
This has been my understanding so far but i might be wrong.
@trend_meanreversion
trend_meanreversion
08 Jan 2016, 09:33
Good start of the month ..CFD Bot up 1.3% in Jan ( Let's not jinx it ! )
@trend_meanreversion
trend_meanreversion
02 Jan 2016, 03:49
( Updated at: 21 Dec 2023, 09:20 )
RE:
lucian said:
I don't think this is normal...
As i said before, it is not uncommon in real world but negative spreads of -6 , -5 etc are definitely suspicious. Which broker's feed is it and which FX pair ?
@trend_meanreversion
trend_meanreversion
01 Jan 2016, 11:25
( Updated at: 21 Dec 2023, 09:20 )
BinaryOptions Indicator V1 released ! ( 5 min expiry examples below )
@trend_meanreversion
trend_meanreversion
01 Jan 2016, 05:57
Hi Spotware team, i really like the platform so far and was one of the very few who adapted to the platform from very early stages but multi symbol backtesting is really needed. Traders really need multi symbol along with multi TimeFrame backtesting. Please make it available because wait for >3 years isn't helpful to anyone. This is crucial functionality and should be incorporated on urgent basis now.
@trend_meanreversion
trend_meanreversion
01 Jan 2016, 03:55
RE: RE: RE: RE:
trend_meanreversion said:
trend_meanreversion said:
I am soon going to provide link to myfxbook link where i have been running CFD bot from Dec. Hoping it to perform the way it has done in last couple of months...Stay tuned !
Here you go ->> http://www.myfxbook.com/members/TRMR/cfd-bot/1459477
Yippie !! Strong performance from CFD bot for Dec : +1.95%
@trend_meanreversion
trend_meanreversion
01 Jan 2016, 03:51
RE:
lucian said:
I run (EURUSD) :
protected override void OnTick()
{
if ((Math.Round(Symbol.Spread * 10000, 1)) < 0)
Print(Math.Round(Symbol.Spread * 10000, 1));
}
and for 06/19/2015-06/20/2015 the result is negative spread. It's normal ?
Hi Lucian, It is perfectly fine to have negative spreads on ECN pricing . It will happen very rarely and that too only on EURUSD because interbank spreads are really tight and indeed negative at times for this instrument.It seems your broker is really good one as his ECN feeds are reflecting such tight spreads.
@trend_meanreversion
trend_meanreversion
31 Dec 2015, 02:50
( Updated at: 21 Dec 2023, 09:20 )
RE:
trend_meanreversion said:
Can someone please direct me to how to create pop up message box for my indicators ? Unfortunately the above link is not working any more -> http:///forum/calgo-reference-samples/475
No worries everyone..got it working . Thanks to the post -> /forum/calgo-support/2539
@trend_meanreversion
trend_meanreversion
31 Dec 2015, 02:22
Can someone please direct me to how to create pop up message box for my indicators ? Unfortunately the above link is not working any more -> http:///forum/calgo-reference-samples/475
@trend_meanreversion
trend_meanreversion
30 Dec 2015, 12:10
( Updated at: 21 Dec 2023, 09:20 )
RE: RE: RE:
DeletedUser said:
Hi Simon,
You can try different broker to get data for Index CFDs. Very few brokers are providing tick data for FX + Index CFDs. Some of them don't even provide tick data for FX pairs. In any case, try on ICMarkets to get tick data for index CFDs.
@trend_meanreversion
trend_meanreversion
25 Dec 2015, 03:14
RE:
Spotware said:
Dear Trader,
You have the ability to use ChartObjects in your cBots. Using chart objects in real time should work fine. They are not supported in Backtesting. Could you please send us a video showing your issue at troubleshooting@spotware.com or post a link.
Hi Team,
I am facing the issue only in cAlgo application but when i turn on the same Bot with chartObjects on cTrader , it works perfectly fine. Unfortunately, the video is too big to send but since i am going to use the bot in cTrader , i am fine with it at this moment.
Cheers
@trend_meanreversion
trend_meanreversion
24 Dec 2015, 00:22
RE: RE: RE:
trend_meanreversion said:
I am soon going to provide link to myfxbook link where i have been running CFD bot from Dec. Hoping it to perform the way it has done in last couple of months...Stay tuned !
Here you go ->> http://www.myfxbook.com/members/TRMR/cfd-bot/1459477
@trend_meanreversion
trend_meanreversion
23 Dec 2015, 15:44
RE:
Spotware said:
No, ChartObjects are not supported on the backtesting chart.
Is it possible to use ChartObjects in cbots. I have a bot which draws arrows on each bar ( it might draw a buy or sell arrow or nothing ) and it works fine till the time chart is running. But if i turn on the bot and go back to see the code and come back again on the chart screen , then all the previous buy/sell arrows are gone and any incoming bar still draws the arrows correctly.
I saved the signals of buy/sell/nothing (1/-1/0) in an IndicatorSeries and charting the entire array on each incoming bar Open, but still any old bar after refresh of chart is not updating those arrows in the chart. Do you tell me what is going on ?
@trend_meanreversion
trend_meanreversion
02 Feb 2016, 07:52
RE:
anurag.gakhar said:
Hi Anurag, you probably need to look into this link http://help.spotware.com/calgo/cbots/email-notifications
@trend_meanreversion