Wednesday, November 21, 2018

Résultats du scanner KSIchimokuBot du 21/11/2018 à 20h12

Voici les résultats du scanner KS Ichimoku Bot qui scanne les prix qui passent au-dessus de leur ligne Kijun Sen, avec les cours du broker Darwinex :

Sur l'unité de temps horaire (H1), les paires de devise dont le cours passe au-dessus de KS sont :
- CHF/JPY, Prix d'achat (Ask) = 113,728, avec la Chikou Span qui est libre sur unité H1
- GBP/CAD, Prix d'achat = 1,69518

Sur l'unité de temps H4 :
- USD/JPY, prix d'achat = 113,015 ; Avec le cours actuel au-dessus de sa KS
- AUD/JPY, prix d'achat = 82,111 ; Cours actuel également au-dessus de sa KS
- GBP/NOK, prix d'achat = 10,90684
- XPD/USD, prix d'achat = 1153 ; Chikou Span libre sur H4

Sur l'unité de temps journalière (D1) :
- USD/JPY, prix d'achat au moment de la détection = 113,011
- EUR/JPY, prix d'achat = 128,788
- AUD/CHF, prix d'achat = 0,72239 ; Chikou Span libre sur D1
- GBP/CAD, prix d'achat = 1,69363
- USD/SEK, prix d'achat = 9,0327
- UK100, prix d'achat = 7064,60
- XAG/USD, prix d'achat = 14,502

Sur l'unité de temps hebdomadaire (W1) :
- EUR/GBP, prix d'achat = 0,89107 ; Cours actuel au-dessus de sa KS
- CHF/JPY, prix d'achat = 113,69
- EUR/MXN, prix d'achat = 23,06092 ; Cours actuel au-dessus de sa KS

En gras ci-dessus la devise USD/JPY détectée sur l'unité H4 et D1.

Thursday, October 4, 2018

Get realtime forex rates in C# for free

Here is an open source project that is made of a HTTP server in C# that receives foreign exchange rates that are sent to it by Metatrader 5 :

https://github.com/reuniware/Forex-Rates-Viewer/

It is composed of a Metatrader 5 expert advisor that sends forex rates in realtime to the HTTP server on port 9090 on the localhost (127.0.0.1).

Simple, powerful, and free (forex rates services are paid services in general).


Monday, October 1, 2018

Le cours de l'USD/JPY approche du niveau de 114...

Ci-après le graphique journalier du cours du Dollar Américain contre le Yen Japonais, qui montre que le prix se rapproche du niveau de 114.




Il est aussi intéressant de noter qu'en graphique mensuel, le cours est actuellement au-dessus du nuage Ichimoku, tel que représenté sur le graphique ci-après :



Thursday, September 27, 2018

USD/JPY, une valeur sûre pour l'investissement ?




En date du 29 Septembre 2018 à 18:15, il est remarquable que les chikou span hebdomadaires et journalières sont libres à la hausse, ainsi que (et surtout) le cours de l'USD/JPY (dollar américain contre la yen japonais).

Une résistance potentielle majeure se trouve au niveau de 114,180

Le cours actuel est de 113,428

Un gain potentiel de 114,180-113,428 = 0,752, donc 752 pips...

Attention, ceci n'est pas un conseil d'investissement mais simplement une analyse technique utilisant le système Ichimoku Kinko Hyo.

Wednesday, September 19, 2018

Scanneur de bougies japonaises Marubozu et Homing Pigeon

Voici le lien vers un projet sur GitHub permettant de scanner les bougies japonaises selon certaines configurations prédéfinies dans Metatrader 5.

Le code source est ouvert et aisément modifiable pour y ajouter d'autres figures de bougies japonaises.

https://github.com/reuniware/Identical-Candlestick-Scanner


Wednesday, September 12, 2018

Ichimoku Scanners for Metatrader



Investdata Systems provide Ichimoku Kinko Hyo based scanners that work on Metatrader 4 and Metatrader 5 platforms.




Friday, August 17, 2018

17/08/2018 EUR/JPY passe au-dessus des moyennes exponentielles EMA 20 à EMA 50


Est-ce que la tendance nouvelle haussière va t-elle persister ?
Nous sommes en fin de journée, un vendredi, donc ce n'est pas le moment d'entrer en position, mais attendons lundi matin pour voir comment évolue cette paire de devises.

Monday, August 13, 2018

Total SA technical analysis on 08/13/2018


Greetings,

Here is a technical analysis of the Total Stock Quote (EURONEXT/NYSE).

Download free report here

I hope that it will help you in making good investment decisions.

Thanks for downloading.


In need for further details ? Feel free to contact me at investdatasystems@yahoo.com


Monday, July 9, 2018

Rapport de scan Ichimoku sur le marché des changes du 09/07/2018 04h00

Voir le rapport sur le lien suivant : http://finance.forumactif.com/t16-rapport-de-scan-ichimoku-sur-le-marche-des-changes-du-09-07-2018-04h00 


New #Ichimoku Currencies Scan Report 4 hours after markets opening on 09th of July 2018 (in Bold = High uptrend probability in hourly timeframe from now on).

Tuesday, June 12, 2018

XAGUSD (Silver) : Lagging span line (Chikou span) still testing 16.924 resistance

Lagging span line (Chikou span) still testing 16.924 resistance by trader77330 on TradingView.com

XAGUSD : A kijun resistance has been met by the price

A kijun resistance has been met by the price by trader77330 on TradingView.com

Monday, June 4, 2018

Daily key levels to watch for Bitcoin/Euro

Go to my TradingView analysis



Daily key levels to watch for Bitcoin price (in €) by trader77330 on TradingView.com

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;

                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

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.




Friday, April 27, 2018

Le bitcoin est en train de passer au dessus du nuage Ichimoku

Comme nous pouvons le voir sur le graphique ci-après, le cours du Bitcoin par rapport à la devise Euro, est en train de tester le nuage ichimoku sur l'unité de temps journalière.

Il faut encore attendre la validation de la lagging span (chikou span) pour avoir une première confirmation de la potentielle tendance haussière.

Il faut remarquer aussi que la lagging span (chikou span) est proche d'un twist du nuage Ichimoku et cela renforce la probabilité d'une traversée du nuage par la lagging span.



S'il y a bien confirmation de la lagging span dans les jours à venir alors un premier take profit serait de 8160€.

Programmation Metatrader 4/5, NinjaTrader 7/8 et ProRealTime

Contactez-moi par e-mail pour toute demande de devis de programmation de vos stratégies (robots de trading) sur :

  • Metatrader 4 (Langage MQL4)
  • Metatrader 5 (Langage MQL5)
  • NinjaTrader 7 (Langage Microsoft C#)
  • NinjaTrader 8 (Langage Microsoft C#)
  • ProRealTime (Langage ProBuilder)



Thursday, February 15, 2018

ETH/USD over the cloud in 4h-timeframe and in the cloud in daily timeframe

https://www.tradingview.com/chart/ETHUSD/4Aim7xNE-ETH-USD-over-the-cloud-in-4h-timeframe-and-in-the-cloud-in-daily/

ETH/USD price has got over the Ichimoku cloud in 4-hour timeframe. 

One has to wait for the Chikou Span Line (aka Lagging Span Line) to get over all the obstacles that are over it for now (Tenkan Sen Line, Kijun Sen Line, Kumo Cloud, Price itself). 

If the Chikou Span Line / Lagging Span Line gets free in daily timeframe then that would be a good confirmation of the up-trend. 



Tuesday, February 13, 2018

New Boosted Monero and Fantomcoin Miner : Xtreme Minergate Miner for XMR/FCN

This improved miner for XMR (Monero) and FCN (Fantomcoin) is now available and adds 25% more hashes/second than any other miner !

It works only with Minergate Pool (create an account and then enter your email in Xtreme Minergate Miner Application).

Download it for free at following URL :
https://github.com/reuniware/Xtreme-Monero-Minergate-Miner

Also if you need the Bytecoin Miner (Also with 25% more hashes than any other miners), here is the download link :
https://github.com/reuniware/Xtreme-Minergate-Miner



BTC/USD getting over the Ichimoku Cloud in 4-hour timeframe

Let's wait and see if it gets over the Ichimoku Cloud in daily timeframe ... 


For now one has to wait for the validation by the Chikou Span Line (Lagging Span Line) in 4-hour timeframe. 


The Chikou Span Line should get over the Ichimoku Cloud in 4-hour timeframe in order to have a validation of the uptrend, at least until the lower line of the Ichimoku Cloud in daily timeframe (short term investment confirmation = Chikou Span in 4-hour timeframe getting over the Cloud). 




Friday, February 9, 2018

One-hour Kijun Sen Line being tested by BTC/EUR


The validation of the 15-minute timeframe uptrend would be having the Chikou Span Line (Lagging Span Line) getting over the Ichimoku Kumo Cloud. Let's wait for the validation by Chikou Span Line that would mean a confirmation of the shortime uptrend !





The most powerful Bytecoin miner for Minergate

Hello all !

Here is a new miner called Xtreme Minergate Miner dedicated to boosted Bytecoins mining.

Download the file XMM1.0.zip at following URL :
https://github.com/reuniware/Xtreme-Minergate-Miner/raw/master/xmm1.0.zip

Xtreme Minergate Miner uses the CPU and the GPU for mining Bytecoin.

It uses the following opensource miners : Xmrig and XmrMiner.




Wednesday, February 7, 2018

BTC/EUR getting over the cloud in 1-hour timeframe

Since yesterday the BTC/EUR price is getting over the Ichimoku cloud in 15-minutes timeframe and now in 1-hour timeframe. 

One has to wait for it to get over the Ichimoku cloud in 4-hour timeframe in order to get a strong uptrend potential. 


For now let's wait and see if the lagging span line (aka the Chikou span line) gets over the kumo in 1-hour timeframe (next awaited confirmation).



View on TradingView

Wednesday, January 31, 2018

Miner des crypto-monnaies en mode console sur la pool MinerGate

Il est possible de miner des cryptomonnaies en mode console sur la pool de Minergate.
A cette fin, il faut télécharger le logiciel de minage un des liens suivants :
https://fr.minergate.com/downloads/console
ou
https://github.com/reuniware/MinerGate-CPU-Console-Miner/tree/master/MinerGate-cli-4.04-win64

Ensuite il faut décompresser l'archive téléchargée, ce qui produira entre autres le fichier minergate-cli.exe

Il faut alors créer un fichier .bat (sur Windows) qui vous permettra de miner la cryptomonnaie que vous souhaitez. Voici quelques exemples de contenus de ce fichier .bat :

Pour le Bytecoin :
minergate-cli.exe -user VotreAdresseEmail -bcn 2
Le chiffre 2 correspond au nombre de processeurs que vous souhaitez affecter au minage

Pour le Monero :
minergate-cli.exe -user investdatasystems@yahoo.com -xmr 2

Pour le Bytecoin et le Fantomcoin et le Monero :
minergate-cli.exe -user investdatasystems@yahoo.com -bcn 2 -fcn+xmr 2

Voilà ! Bon mining !





ETH/USD still uptrend in daily and 4-hour timeframes

One must check in hourly and 15-minutes timeframe if the price of ETH/USD will get over the Ichimoku clouds again. If yes then that would mean that ETH/USD will go uptrend again. I think that the US major news coming are stopping momentarily the growth of ETH/USD that will get uptrend again in the following ten days at least.



The post on tradingview

Will BTC/USD bounce on a 1-day trendline to get uptrend again ?

I think that there is a probability for BTC/USD to bounce on a 1-day timeframe trendline to go uptrend again and cross the 1-day kumo around the 10th of February 2018. Let's wait and see if this bounce occurs, and if BTC/USD does not bounce and gets under this trendline then that would mean that a strong downtrend will occur. 


Click here to see the graph on tradingview website

Tuesday, January 30, 2018

A major weekly resistance being tested by BTC/USD

There is a major line $10748 of that is visible on a weekly graph, that is actually being tested by BTC/USD price. If the price gets under it then that would be a confirmation of a downtrend. If the price bounces on this support of $10748 then BTC/USD might get uptrend again... 



The post on TradingView website

ETH/USD getting out of the kumo while uptrend

Here is the ETH/USD graph on which one can see that the price is getting over the kumo in 15 minute timeframe. 

The horizontal line added is the one hour kumo line over which the price should get over to get a confirmation of the uptrend in all timeframes (1d, 4h, 1h and 15min). 


Topic on tradingview

ETH/USD still uptrend in upper timeframes

ETH/USD price is still uptrend in upper timeframes such as 4 hour timeframe and daily timeframe . The actual Kijun Sen line of 1123.62 might be a support and if crossed by the price while this latter being downtrend then that would confirm a downtrend, at least. If the price bounces on the support line of 1123.62 then that would mean a possible reversal and up trend that should be confirmed by looking at lower timeframes charts in 1 hour and 15 minutes timeframe.



The post on tradingview website

Saturday, January 27, 2018

BTC/USD tries to be uptrend :)

4 minutes ago
The price of BTC/USD is trying to get over the kumo in one hour timeframe and if the chikou span (lagging span) crosses all the obstacles while going up then that would be a good confirmation of an uptrend and one should then look at the 4 hour timeframe to get the next obstacles to cross for the price being again uptrend in daily timeframe . 

Friday, January 26, 2018

Bitcoin analysis

Actual bitcoin price is getting under the kumo in 15-minute timeframe. This is the case for BTC/EUR and BTC/USD. If the BTC/USD gets over the kumo again in this timeframe then that would be a first confirmation of the new uptrend, but one has to check in upper timeframes. Here is the corresponding graph :



Thursday, January 4, 2018

Free download of expert advisor Ichimoku Ultimate Trader EA for Metatrader 5

The EA for Metatrader 5 called "Ichimoku Ultimate Trader EA" is now downloadable for free with absolutely all features. Please right-click the following link then select "Save Link As" to download it to your computer :

Right-click here then select "Save link as" to download IchimokuUltimateTraderEA.ex5

Téléchargement gratuit IchimokuUltimagtTraderEA pour Metatrader 5

Téléchargez gratuitement le robot d'aide à la décision d'investissement nommé Ichimoku Ultimate Trader EA pour Metatrader 5, en version complète et non bridée !

Faire click droit ici puis "Enregistrer Le Lien Sous" pour lancer le téléchargement direct du fichier IchimokuUltimateTraderEA.ex5