
Topics
Replies
PanagiotisChar
13 Sep 2023, 05:58
( Updated at: 13 Sep 2023, 05:59 )
RE: RE: Get Value from Symbol.Data.MinVolume //minimumTradeSize
daniel.schaeftlein said:
PanagiotisChar said:
Hi,
It's a part of ProtoOASymbol. You can get the symbols using by ProtoOASymbolByIdReq
Hi,
i try:
private void btnGetSymbols_Click(object sender, EventArgs e) { var message = new ProtoMessage { Payload = new ProtoOASymbol { SymbolId = 44, Digits = 4, PipPosition = 0 }.ToByteString(), PayloadType = (int)ProtoOASymbolByIdReq.CtidTraderAccountIdFieldNumber, }; Transmit(message); }
but it doesnt work
Can u send code?
BR
Daniel
I don't have source code, sorry
@PanagiotisChar
PanagiotisChar
13 Sep 2023, 05:57
( Updated at: 13 Sep 2023, 05:59 )
Hi there,
You just need to reinstall all the cBots and indicators on the new computer. Else paste your folders in Documents\cAlgo\Sources
@PanagiotisChar
PanagiotisChar
13 Sep 2023, 05:54
( Updated at: 13 Sep 2023, 05:59 )
Hi there,
Try sending some troubleshooting information when this happens
@PanagiotisChar
PanagiotisChar
13 Sep 2023, 05:52
( Updated at: 13 Sep 2023, 05:59 )
Hi there,
I am not aware of a ready made one but if you are interested in converting it for a fee, feel free to contact me at development@clickalgo.com
@PanagiotisChar
PanagiotisChar
13 Sep 2023, 05:51
( Updated at: 13 Sep 2023, 05:59 )
Hi there,
I do not have a ready code to share but you can use Symbol.Commission and Symbol.CommissionType alongside with some math to calculate this
@PanagiotisChar
PanagiotisChar
13 Sep 2023, 05:45
( Updated at: 13 Sep 2023, 05:59 )
Hi there,
In order to get assistance, you would need to share the cBot code that reproduces the problem
@PanagiotisChar
PanagiotisChar
13 Sep 2023, 05:44
( Updated at: 13 Sep 2023, 05:59 )
Hi there,
You can find the requirements to be included in the link below
https://help.ctrader.com/ctrader-copy/becoming-a-strategy-provider/
@PanagiotisChar
PanagiotisChar
12 Sep 2023, 06:02
Hi there,
You need to provide more information about your problem. In order to get help, you need to share the cBot code and exact steps to reproduce the problem
@PanagiotisChar
PanagiotisChar
12 Sep 2023, 06:01
Hi there,
the Position window in "aggregated view" shows Average entry price for a symbol - and this seems to include the cost of commissions both ways.
As far as I know it does not
@PanagiotisChar
PanagiotisChar
11 Sep 2023, 12:25
RE: RE: Stop-loss and Required Margin
Gtmanure said:
"Our thoughts," are you a part of the CTrader team? Is this an official position? ;)
No I am not. I did not see the question being addressed to somebody :)
If that's the case, then I'm surprised that you're not familiar with the strategies that are offered, as most of them do not provide this kind of information. It's often stated in the description the expected return, the technique employed, and in the parameters, the minimum accepted amount. One of the few examples I found is the Sleeper strategy (which is what caught my attention), which advises a minimum of 300, but that 700 is better.
I don't trust anybody's description :) Only results
This seems to be somewhat contradictory to the very principle of copy trading, doesn't it? When one reads the description of the basic principle, the investor is not supposed to take into account the money invested by the strategist.
I do. I would never invest 100k in a 100 euros. It's a matter of equal risk. Nobody forbids you from doing so :) ? I just stated my thoughts as per your request.
I believe it would be beneficial for you to clarify these matters. In your FAQ, there is mention of this issue, but it's somewhat vague. I'm concerned that many people have lost money because of this problem! Strategists should be required to provide clearer guidance on the ideal investment required and reform the concept of minimum investment, as it can be misleading, sometimes as low as 100 euros for some.
cTrader is a trading platform and FAQs are for technical questions. What you are describing is investment decisions e.g. trust the strategy's provider description a.k.a. the strategy's marketing. Don't expect investment advises from a technical portal.
@PanagiotisChar
PanagiotisChar
11 Sep 2023, 05:33
Hi there,
Move your post to the correct forum section and ask about the information you are missing to do this yourself. Posts in the form “Do this for me” rarely get responses.
@PanagiotisChar
PanagiotisChar
11 Sep 2023, 05:31
Our thoughts are don't invest into strategies that do not provide proper information to followers :). Also it's a good idea your investment to be close to the amount of the strategy provider. Not much less, not much more.
@PanagiotisChar
PanagiotisChar
11 Sep 2023, 05:26
Hi there,
You would need to integrate a licensing solution to your cBot.
@PanagiotisChar
PanagiotisChar
09 Sep 2023, 10:06
Here you go
if (Bars.OpenTimes.LastValue.TimeOfDay > TimeSpan.ParseExact("08:59", "hh\\:mm", null))
{
}
@PanagiotisChar
PanagiotisChar
08 Sep 2023, 06:32
var sma_1234 = (((sma1+sma2)/2) + ((sma3+sma4)/2))/2
You cannot do this, this is not pinescript :) You need to create a new indicator that will do this and return a single result as output
@PanagiotisChar
PanagiotisChar
07 Sep 2023, 06:23
( Updated at: 07 Sep 2023, 10:08 )
Hi there,
Nope there isn't
@PanagiotisChar
PanagiotisChar
07 Sep 2023, 06:17
( Updated at: 07 Sep 2023, 10:08 )
Hi,
It's a part of ProtoOASymbol. You can get the symbols using by ProtoOASymbolByIdReq
@PanagiotisChar
PanagiotisChar
07 Sep 2023, 06:06
Here you go
var sma = Indicators.SimpleMovingAverage(Bars.ClosePrices, 50);
var sd = Indicators.StandardDeviation(sma.Result,50, MovingAverageType.Simple);
@PanagiotisChar
PanagiotisChar
14 Sep 2023, 06:27
Hi there,
How can somebody reproduce this problem?
@PanagiotisChar