
Mparama

Info
Username: | mparama |
Name: | Mparama |
Member since: | 11 Oct 2016 |
Country: | Italy |
Favorite symbols:
About
Signature
Last Algorithm Comments
@BBands Trend Follower: 17 Jul 2020, 04:43
test
@Robot for Trend and Range periods: 29 Apr 2019, 02:47
Hi Astevani, thanks for the bot ! Actually in the last backtest with the suggested parameters , same period, it gives me the same result as yours. Testing it OutSample it does'nt work which means that the parameters are overfitted. 2 years test is not enough you should test it for minimum 5 years. Setting the Backtest and Optimization you should put the Commission to 50 and the spread to minimum 2 pips as you should reduce the impact of Slippage on real. With these settings in the same period the result is negative. I think that this bot in optimization will produce allways overfitted results as there are too many parameters which means that when you backtest it OutSample will produce drastically different results.
@Multiple Entries Robot: 04 Dec 2016, 06:37
Dear Waxy, thanks a lot for good job ! I think you should have a look to: //FirstExecute Order - the Stop Mode if (Symbol.Ask <= _LongPrice && _LongX == 0 && _LCurrentTries < _MaxTries && !_LModeL) ExecuteMarketOrder(TradeType.Buy, Symbol, _LVolume, _LLabel, SLoss, TakeProfit);........ should be: PlaceStopOrder(TradeType.Buy, Symbol, _SVolume, _LongPrice, _SLabel, SLoss, TakeProfit); //Execute Order - Limit Mode if (Symbol.Ask >= _LongPrice && _LongLX == 0 && _LCurrentTries < _MaxTries && _LModeL) { PlaceLimitOrder(TradeType.Buy, Symbol, _LVolume, _LongPrice, _LLabel, SLoss, TakeProfit); ........... and so with the Sell mode
@Golden Dragon II: 20 Nov 2016, 14:37
Great Job Nobuart thanks a lot !!!
@RSI Range Robot: 28 Oct 2016, 04:03
...Stop Loss not working !!! Please anyone can fix it ???
@1SK - Inter-Market v4 (5TF + Prev. Data): 27 Oct 2016, 01:50
Hi
Last Forum Posts
@After New cTrader release I cannot open any of cTrader platform of any Broker: 26 Mar 2021, 20:31
PanagiotisCharalampous said:
Hi mparama,
Try a clean installation. If that doesn't fix the problem, try reinstalling .net framework.
Best Regards,
Panagiotis
Thank you !!!
@After New cTrader release I cannot open any of cTrader platform of any Broker: 22 Mar 2021, 20:50
Hi cTrader staff,
After New cTrader release I cannot open any of cTrader platform of any Broker,
On opening the platform program comes out the following message: ( I uninstalled it and downloaded again but always the same error message:
Please any tips on how to solve the problem !!!
@optimization with zero equity results in too much fitness value: 18 Nov 2020, 00:52
Your Max Equity DrawDown is very high anyway,
check the Start Capital and the Start Order Size
Probably you should increase your Start Capital or decrease the Start Order Size
@ClosePosition SymbolName: 18 Nov 2020, 00:40
mgpublic said:
Hi,
I need help with the code below so that it only closes the position with the indicated SymbolName for example "USDJPY"
I'm using the code below and it closes all positions.
if ()
{
foreach (var position in Positions)
ClosePositionAsync(position);
}Thx for help!
//mgpublic
You should use:
var posBuy = Positions.FindAll(Label, SymbolName, TradeType.Buy);
var posSell = Positions.FindAll(Label, SymbolName, TradeType.Sell);
if ()
{
foreach (var position in posBuy)
ClosePositionAsync(position);
}
@cBots runs well while backtesting, but not on Optimazition: 17 Oct 2020, 05:03
xabbu said:
found it - no chart events allowed...
is there the possibility to check if the cBot is in optimization mode (like isBacktesting) or any other trick not to out comment the lines with chart.xxxx?
Kindest regards,
if (RunningMode != RunningMode.Optimization)
{
.......Chart events.....
}
@Forex Robot, 1 Year ROI > 1500%: 29 Jul 2020, 03:13
the 1 year period is not indicative of the reliability of a strategy. You should backtest for minimum 8/10 years.
@I want to know whether or not it is Daylight Saving time: 01 May 2020, 03:26
driftingprogrammer said:
Hi,
I am facing the same problem in my Indicator.
Half the year the server runs on UTC+2 time zone and half the year it runs on UTC+3 time zone. The transition happens randomly during a certain weekend.
When my Indicator is invoked for MarketSeries.OpenTime.LastSeries being 0030hr on 4th november, i want to know if it is in UTC+2 timezone or UTC+3 timezone, or in other words i want to know if the daylight saving is on or off because only then i can know if the data is applicable to 3rd November or 4the November.
Any help is appreciated.
Thanks in advance,
Warm Regards,
Vipin.
Try this:
if (Server.TimeInUtc.IsDaylightSavingTime())
{
currentHours = Server.TimeInUtc.AddHours(+3).TimeOfDay.Hours;
currentMinute = Server.TimeInUtc.TimeOfDay.Minutes;
}
if (!Server.TimeInUtc.IsDaylightSavingTime())
{
currentHours = Server.TimeInUtc.AddHours(+2).TimeOfDay.Hours;
currentMinute = Server.TimeInUtc.TimeOfDay.Minutes;
}
@Atoz awards cTrader: 13 Mar 2020, 20:32
Spotware said:
Dear Trader,
It is with great pleasure that we share a new addition to our awards’ portfolio - “Best Forex Trading Platform” from AtoZ Markets.
AtoZ Markets have been conducting their annual forex awards for several years, with the aim of recognizing financial markets’ industry leaders, and it is an honour for cTrader to have been chosen by the community as the top trading platform provider.
This motivates us to improve further, delivering even more innovative, transparent and value-adding solutions for your complete, all-in-one trading experience. The best is yet to come!
Without a doubt ... you are the best platform !!!!
@in cTrader in Automate create folders where to store cBot: 13 Mar 2020, 20:26
Dear cTrader staff,
In cTrader Automate would be very useful to give the possibility to create Folders where to store cBot with similar strategies as MT4 does.
Anyway thank you very much for your effort to give us the best tool for trading.
regards
@New API Vers. 3.7: my job is blocked - Backtasting very Slow and MultiTimeFrame not working in Optimization: 20 Feb 2020, 01:54
TzvetomirTerziysky said:
mparama said:
Dear Panagiotis,
I have tested BackTest in Beta and it seems working even faster then version 3.6.
I have tested as well the optimization with MultiTimeframe and everything seems working OK.
Thank you very much to you and all the staff of Spotware for the efforts to give us always a better service.
Regards
Can you please share how you define the MultiTime frame?
My Bars are empty in Optimisation if they are different time frame( and throw Null Exception), while the work perfectly fine under BackTesting
Hi,
as soon as they released di HotFix the Optimization seems working again. Some days later it was not working again probably because they were working in progress.
Yesterday from Beta version I have downloaded an upgrade and it seems they fixed the optimization.