Lagging span line (Chikou span) still testing 16.924 resistance by trader77330 on TradingView.com
Tuesday, June 12, 2018
Monday, June 4, 2018
Wednesday, May 23, 2018
Passer un ordre non managé sur NinjaTrader 7 (C#)
Afin de passer un ordre non managé dans une stratégie sur NinjaTrader 7, il faut suivre les étapes simples suivantes :
Dans la méthode surchargée Initialize() ajouter le code suivant :
protected override void Initialize()
{
Unmanaged = true;
}
Ensuite, dans la méthode surchargé OnBarUpdate() ajouter le code suivant pour émettre un ordre d'achat (dans notre cas c'est un ordre Buy Stop qui se déclenche à 10000 avec un Stop Loss à 9000 et 10 Lots) :
protected override void OnBarUpdate()
{
if (this.Historical == true) return;
Dans la méthode surchargée Initialize() ajouter le code suivant :
protected override void Initialize()
{
Unmanaged = true;
}
protected override void OnBarUpdate()
{
if (this.Historical == true) return;
IOrder orderAchat = SubmitOrder(0, OrderAction.Buy, OrderType.Stop
(int)10, 10000, 9000, "", "NomDuSignal");
}
Friday, May 18, 2018
Programmation de Robots de Trading
Un nouveau prestataire en France propose de programmer vos robots de trading sur Metatrader 4 et 5, NinjaTrader 7 et 8, et ProRealTime. Des formations à la programmation de robots de trading sont aussi proposées.
Le site Investdata Systems :
https://tradingbot.wixsite.com/robots-de-trading
Le site Investdata Systems :
https://tradingbot.wixsite.com/robots-de-trading
Sunday, April 29, 2018
Bitcoin price is trying to get over the Ichimoku cloud
The Bitcoin price is trying to get over the Ichimoku cloud in daily timeframe. The lagging span line (chikou span line) is still under the kumo but if it gets over the kumo then that would be a confirmation of the uptrend in daily timeframe. For that confirmation to occur, a full japanese candlestick has to be over the Ichimoku Kumo and the lagging span line must be over it also.
Subscribe to:
Comments (Atom)