Yoshiaki Furuichi
Yoshiaki Furuichi
  • Information
8+ years
experience
0
products
0
demo versions
0
jobs
1
signals
0
subscribers
Friends

Add friends via their profile or user search and you will be able to see if they are online

Yoshiaki Furuichi Published MetaTrader 4 signal
JJM1000
Price: 30 USD, Growth: -0.25%
Yoshiaki Furuichi
Registered at MQL5.community
Yoshiaki Furuichi
Added topic Back Test did not work for year 2005, but ok since 2006
When I back tested from year 2006, the EA works fine. But when I switched the year earlier to 2005, the back test did not work. Is there anything I miss in the code for the old years
Yoshiaki Furuichi
Added topic Not execute the first trade signal
Hello, If a trader just run the EA and it detects a trade signal but it is near the end signal where it is less favorable. How to program the EA so that it will not execute the first signal after launching
Yoshiaki Furuichi
Added topic stoploss help
Hello, Is there a function to check if the stoploss has been triggered. I want to run a script when the order stoploss is executed. Thanks
Yoshiaki Furuichi
Added topic need help to divide a double
Hello, I have a double value of 0.00045 and need to divide it by 2000 to get the average value. But the result I get is 0. Is there a function to do this
Yoshiaki Furuichi
Added topic dynamic size array help
int counted_bars=IndicatorCounted(); if(counted_bars>0) counted_bars--; limit =Bars-counted_bars; double arrayOne[ limit ]; I need to create an array of dynamic size above, but it doesn't work in this code. What is the correct way of coding it
Yoshiaki Furuichi
Added topic newbie needs help in Accelerator indicator -> Array
Hello, I am trying to use the existing Accelerator indicator and put it in array but my array doesn't seem to give me the correct figure. Can someone point out the mistake? The Original Accelerator indicator below
Yoshiaki Furuichi
Added topic Array Help
Hello, I have got an array of [1,2,3,4,5, ...] How do I change it to [...,5,4,3,2,1] ? Any help is appreciated. Thanks