Topics
Replies
firemyst
29 May 2023, 06:03
I don't think so. I think what you'll have to do is have a separate button or checkbox to hide the indicator drawings before someone clicks the eyeball to hide the indicator.
This means you'll have to have the indicator keep track of all its drawings so it can show/hide them when the button/checkbox you create is checked/unchecked.
@firemyst
firemyst
29 May 2023, 03:49
RE: Suggestions for mobile
Nick24 said:
Trading:
11:
We need to have a multi-chart mode.
You should explain this a bit more on what you expect from this, because @Spotware will come back and say, "there's already a multi-chart mode", which there is if you click here:
@firemyst
firemyst
29 May 2023, 03:16
( Updated at: 21 Dec 2023, 09:23 )
RE:
lindawati92sufi said:
i buy 0.2 lot eur/usd at 18th and closed it in 19th today
i should pay swap 1.5usd not 15usd
Maybe you should try switching to Pepperstone?
@firemyst
firemyst
29 May 2023, 03:03
( Updated at: 21 Dec 2023, 09:23 )
RE: RE:
Automated_Trading said:
firemyst said:
Read this thread and do what's suggested:
Now the cTrader is loading the data each time I want to optimize or backtest the bot. I ran the backtesting letting the data load. I tried again using the same history, but it loads the data again. It is not saving the data. I closed the cTrader and restarted my computer several times, but the problem persists.
Do you maybe know how to fix this?
@PanagiotisChar? @Spotware? Anyone else?
@firemyst
firemyst
28 May 2023, 14:04
I see this thread hasn't been responded to, so thought I might say something in case it's still an issue? Or you'd like to revisit with a possible work around?
For starters, I would try this:
I haven't used it, but should allow for non-blocking operations because at the bottom of the page, it says, "While a message box is displayed, all other cBot/indicator events will be invoked normally."
Let us know how it works for you.
@firemyst
firemyst
28 May 2023, 06:29
The issue would be with your broker. Perhaps time to consider switching to Pepperstone instead?
@firemyst
firemyst
28 May 2023, 06:28
People always seem to be reporting issues with IC Markets. Perhaps it's time to consider switching to Pepperstone?
@firemyst
firemyst
28 May 2023, 06:26
( Updated at: 21 Dec 2023, 09:23 )
RE:
lics_cs said:
after i make complain to my broker which is ICmarkets
they credit back to my account about wrong swap after 4 days
thanks for they fast support
but i dont know if u got wrong swap but you are not aware and dont complain to IC cust support they will restore automatically about wrong swap
With all the issues people seem to have and report with IC Markets, you might consider switching to Pepperstone.
@firemyst
firemyst
27 May 2023, 18:19
( Updated at: 21 Dec 2023, 09:23 )
Unfortunately, cTrader is very limited with its charts and how you can display them. It would be nice if Spotware spent time on improving these features to bring it into the 21st century like other trading platforms instead of lagging behind the competition.
For the moment, the best you can do is get all the tabs you want, and then click the button to put cTrader into "multichart" mode:
@firemyst
firemyst
27 May 2023, 18:15
In regards to:
2) You can already do all this in Desktop version (exception being able to set a gradient background). Go under Color Options and set the Background and Grid color to what you want
3) you can already do this. Adjust the horizontal scale of the chart.
4) you can already do this in Desktop. Go under Color Options and set the color to what you want
5) You can already do this in Desktop. Go under Color Options and set the color to be transparent
6) Already in Desktop version
@firemyst
firemyst
29 May 2023, 06:18
Do you want the exceeds of $1250 to be gross profit or net profit?
Here's an example to test net profit on your account:
if (Account.UnrealizedNetProfit > 1250)
{
foreach (Position p in Positions)
{
ClosePosition(p);
}
}
@firemyst