mr crypto joined the group
Fractal Arrow Prediction 11 years, 3 months agohankee joined the group
Fractal Arrow Prediction 11 years, 3 months agoSCFx joined the group
Fractal Arrow Prediction 11 years, 3 months agoRahat Lukum replied to the topic How to: Creation of Fractal Arrow Indi in the forum
Fractal Arrow Prediction 11 years, 3 months agoPics or it didn’t happen

Emonts posted an update in the group
Fractal Arrow Prediction 11 years, 3 months agoHI GG,
Maybe you can do us a favor.
Is it possible to publish a chart in which besides the swing point we can see some marked bars where you algo jumps from step 1 to step 2 and from step 2 to step 3.
I think this will helpus a lot.BR
Huubhappypip joined the group
Fractal Arrow Prediction 11 years, 3 months agoKoni replied to the topic How to: Creation of Fractal Arrow Indi in the forum
Fractal Arrow Prediction 11 years, 3 months agoagainst set2
Koni replied to the topic How to: Creation of Fractal Arrow Indi in the forum
Fractal Arrow Prediction 11 years, 3 months agoAccording to carl’s pdf its only comparing occurences.
If ‘current fpattern’ has more occurences than ‘current + 1’ or ‘current +0’ take current.
Thats what i always thought.
smallcat uploaded the file: Fractal_Close_Mod to
Fractal Arrow Prediction 11 years, 4 months agoModification of Fractal_Close indicator by Emonts. Adding weekend time filter, using only 5 bars to check the fractals.
smallcat posted an update in the group
Fractal Arrow Prediction 11 years, 4 months agoI modified the fractal_closed indicator by Emonts, adding filter of weekends, and use only 5 bars to build the Fractal closed signal. Do not know it is right or not.
Zelo posted an update in the group
Node.js + MQL4 Development 11 years, 4 months ago@Saver0, Is there any other simple way send data from MT4 to node server?
MT4 as server and Node app is client.I only see Socket or ZeroMQ for now.
gg53 replied to the topic Charts posted by GG in the forum
Fractal Arrow Prediction 11 years, 4 months agoKoni,
Exact definition for “adaptability” is in FF posts, which you can find here as “salvaged” docs.
G.
GU_Night joined the group
Fractal Arrow Prediction 11 years, 4 months agosmallcat replied to the topic How to: Creation of Fractal Arrow Indi in the forum
Fractal Arrow Prediction 11 years, 4 months agoDo you know this 0.00005 gaps allowed for which TF ? Is it for M5 or also can be applied to M15, M30, H1 etc ? How to get that number (may be using ATR or other tools) ?
Thanks
highwise joined the group
Fractal Arrow Prediction 11 years, 4 months agoCSendo joined the group
Node.js + MQL4 Development 11 years, 4 months agosmallcat replied to the topic How to: Creation of Fractal Arrow Indi in the forum
Fractal Arrow Prediction 11 years, 4 months agosmallcat replied to the topic How to: Creation of Fractal Arrow Indi in the forum
Fractal Arrow Prediction 11 years, 4 months ago@muuh, thank you very much for this good information bro …

Saver0 replied to the topic How to: Creation of Fractal Arrow Indi in the forum
Fractal Arrow Prediction 11 years, 4 months ago@smallcat @muuh
What I would do is when I record the data (fractals & zigzag pattern), record only the fractal and bar patterns where there were no gaps were in between close and open prices. Keep in mind that there is usually a very small gap of less than a pip during low/high volatile times. So I would first define what a gap is, maybe greater…[Read more]- Load More
@Zelo, Can you explain more ? What is the purpose of ZeroMQ here ? It is as a bridge between MT4 and NodeJs ?
Can it also be as bridge between MT4 and other language (PHP+Mysql , or Python+DB for example) ?
Thanks
Yep! It is possible. But I found that MQL has WebRequest function that can do the job, I will try that and let you know.
I found this : http://zguide.zeromq.org/php:_start , http://zeromq.org/event:zeromq-for-mysql and this : https://github.com/AustenConrad/mql4zmq
Is it right ?
@zelo that looks really cool by the way! I have tried ZeroMQ and it worked pretty well. But i found creating a simple http server in Node.js to be the easiest and it would also be easier for anyone who want to setup your app. Because even if you use ZeroMQ or anything else, you would still need to check some sort of a queue with the way MT4 works.…[Read more]
@Saver0, I like Node.js too. I think about send data lile ohlc and indicator data from MT4 to our app
would be easier than connecting Oanda. I looked into your code and it pretty complicated
Is there any simpler way :-D
@zelo It shouldn’t be too complicated if you take a look at it. I may have over complicated it. Like smallcat said, it’s just that one function call that’s doing all the work. You can send the data to Node.js in any format you want. I just prefer it to be in JSON so it can be easily parsed. I send the data with a command in the first few strings…[Read more]
@Saver0 I know about Oanda Api. It is really good. I am biased on Oanda too.
There is a problem with the chart app in the picture above. I can not draw trend line and get information about a candle
because of CSS positioning, I can not get exact mouse position, LOL
If i want to, i have to rewrite code in SVG.
So I will keep thing simple,…[Read more]
@Zelo Yea, I’m biased against all Brokers to be honest.. haha just use what is available to me.
If I can see 4small 600×400 windows with 4 time frame charts, on a 2×2 grid running synchronized, I would be happy 
As for the trend lines, maybe try to keep the charts simple? It doesn’t have to be 3D looking
@saver0, from the mql file we can see “if(!INet.Request(“POST”,”/”,data,false,false,req,false)) ” and “if(!INet.Request(“POST”,”/”,incoming_msg,false,true,req,false))” , the string variable “data” and “incoming_msg” are to hold the return value sent by NodeJs, and we use jsonParser to get the ‘direction’ of the signal ?
Yes, you are correct there smallcat.