- Search Forex Factory
- 461 Results (6 Threads, 455 Replies)
- Beerrun replied Jun 15, 2022
That's your gut and its usually right
- Beerrun replied Jun 15, 2022
I agree with ya. Should have followed my gut and gone with NZD
- Beerrun replied Jun 15, 2022
Whelp this dummy picked the pair that moved the least
- Beerrun replied Nov 8, 2020
Not your main issue but this adds 1 to the amount of alerts sent: x=0;x<=PlaySoundNTimes Should be: x=0;x<PlaySoundNTimes or x=1;x<=PlaySoundNTimes
- Oanda V20 API
If anyone here uses Oanda and Node.js, I started a library for use with the Oanda V20 API. {url} ...
- Beerrun replied May 18, 2020
Yessir that counts magic numbers. Add “if(OrderSymbol()==_Symbol)” before “result++;” if you have the same magic number on different chart symbols
- Beerrun replied May 18, 2020
Yes that could be an issue. Both programs could see 0 orders and then both try to send an order. If you have access to the source code I can help you create a mutex to prevent this.
- Beerrun replied May 15, 2020
The && (AND) and || (OR) separate conditions. The conditions inside have to evaluate to true based on whatever you put in there. So saying open&&close does not add them together, it is two separate conditions.
- Beerrun replied May 15, 2020
It looks good. However one thing I notice is the “Open[2]&&“ in the 2nd condition. As it is now it is saying “if open[2] is true”. Testing shows that an if statement with any value besides 0 will still be accepted as true: if(-1), if(0.1), if(2) all ...
- Beerrun replied May 14, 2020
Brand new code, works a lot more efficiently, based on this url but better. Able to be loaded 9 times (default timeframes) before the indicator instances conflict. The alert is not tied to D1 only but any outwards fractal break with a close; it is ...
- Beerrun replied May 13, 2020
It looks like it was made on a larger screen.
- Beerrun replied May 13, 2020
Here you go. Could use some updating though. Just needs to be called once to get the id
- Beerrun replied May 13, 2020
No worries with mistakes, we all make them, I do every day; call them learning experiences The unique id is a consistent issue, you can google it and you’ll find a few solutions but none are bulletproof. My own solution uses terminal global ...
- Beerrun replied May 13, 2020
Regardless of yours and Phylo’s interaction, I have already posted two versions before this. However, nothing wrong with giving it a go yourself It is good to attempt the challenge and the more coders helping here the better. You ...
- Beerrun replied May 13, 2020
All 9 default time frames
- Beerrun replied May 13, 2020
Which timeframes as default? Or all timeframes?
- Beerrun replied May 13, 2020
Give this a try. Can load it as much as you want.
- Beerrun replied May 13, 2020
BBands is a separate indicator from the one I posted
- Beerrun replied May 12, 2020
When does the alert happen?
- Beerrun replied May 12, 2020
I hope it’s what you wanted. I’m not trying to put a lot of effort in though, I’m sorry. I just modified the tf input, added the tf to the object names, replaced dots with arrows if not using D1, slimmed down the input list, and cleaned up the code.