
Topics
Replies
Mikro
29 Feb 2016, 01:01
RE:
cyfer said:
AdditionLongTrades.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
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 codethis way you're comparing 2 values and it will work
Hi Cyfer,
works!
Thank you!
@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
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
That sorts out the bad Spread Data.
Why is there negative Spread???
@Mikro