Topics
28 Feb 2019, 10:11
 19
 2375
 8
19 Jun 2018, 00:56
 2185
 6
25 Jan 2017, 17:54
 117
 2748
 8
05 Nov 2016, 23:28
 8647
 18
18 Jun 2016, 14:57
 4307
 7
Replies

Mikro
15 Jun 2016, 23:18

All right,

didn't expect negative Spread to be possible, despite I'd gladly accept a Bonus just for executing a Trade ;)

I added an Condition to the opening parameters for new Trades

If(OpenTrade == true && Symbol.Spread > 0)
{
   ExecuteMarketOrder()
}

That sorts out the bad Spread Data.

 

Why is there negative Spread???


@Mikro

Mikro
29 Feb 2016, 01:01

RE:

cyfer said:

Addition
LongTrades.ADD(a long Trade) ;
its something like that mainly , you can put any type or Custom Type in a generic list 

Hi Cyfer,

tried it with List<int> and Trade IDs, which works, thank you.

Using 'HistoricalTrade' Types as a From of Lists instead could be very practical form my Bot though.

I couldn't figure out how to add items to <HistoricalTrade> Lists. If I open a new Trade, how do I add it to the List in your example an how do I query Information from the Trade, for example to remove it if it was closed?

I'm thinking like this

public List<HistoricalTrade> LongTrades = new List<HistoricalTrades>;

method1()
{
Trade=ExecuteMarketOder(TradeType.Buy, Symbol, 10000, "Long", 50,150);
if (Trade.IsSuccessful==true)
{
   LongTrades.add(???);
}
{

method2()   //check if StopLoss or TakeProfit has closed the Trade an remove it from List
{
foreach( var Trade in LongTrades)
{
if (Trade.???)   //check if Trade is closed
LongTrades.remove(Trade)
}
}

 


@Mikro

Mikro
23 Feb 2016, 22:18

Sorted that one out

The mistake ist to declare 'OpenLong' as a TradeOperation the second time inside Method1().

Only using

OpenLong = ExecuteMarketOrderAsync(...);

it works.
 


@Mikro

Mikro
22 Feb 2016, 00:03

RE:

cyfer said:

LTSigOpen or LTSigClose is a Series of data (in this case Moving Average).. not a single value 

you should be comparing the X Value in the moving average with the Y Value in price  or Y Value in another moving average

so you should be going like that : 

LTSigOpen.Close.Last(0) < LTSigClose.Close.Last(0) //pseudo code 

this way you're comparing 2 values and it will work 

 

 

Hi Cyfer,

works!

Thank you!


@Mikro

Mikro
11 Feb 2016, 23:15

No Idea anybody how to make the cBot draw an indicator in the chart when executed?


@Mikro

Mikro
09 Feb 2016, 23:03

RE:

Hi there,

I am struggeling with the same issues.

I want to draw indicators and graphic opbjects in the chart while the cBot is active, as well as in backtesting mode.

Is it now possible while trading or in backtesting mode?

 

THX

Spotware said:

No news. We have this feature in our long term roadmap.

 


@Mikro