- Search Crypto Craft
- Kenz987 replied May 25, 2010
not sure: looks like some { not where they should be if( ) Print( ); else { // whatever } ps: also, good to use DoubleToStr(Price,4) for doubles
can anybody see why this is not printing ticket details
- Kenz987 replied May 25, 2010
search for my posts in the members section for: check this: url
Modify Tick Chart Indicators
- Kenz987 replied May 25, 2010
Check out BroCo - YM for sure, maybe Dow cash.
Broker with Dowjones index on MT4?
- Kenz987 replied May 25, 2010
lost connection — live server: server time 17:01 to 17:28, May 25
GoMarkets Discussion
- Kenz987 replied May 25, 2010
see help — int OrdersHistoryTotal( ) Returns the number of closed orders in the account history loaded into the terminal. The history list size depends on the current settings of the "Account history" tab of the terminal. Sample: // retrieving ...
How can i test if the last trade was profitable
- Kenz987 replied May 23, 2010
OK I see that now, should have checked the calendar first- I usually have that kind of event marked on my calendar. Thanks Ronald.
Request for help and experience!
- Kenz987 replied May 23, 2010
What news? — Ronald (or anyone): What was the news event that caused that spike March 18, 2009 (re: post 6)? Thanks, Ken.
Request for help and experience!
- Kenz987 replied May 22, 2010
Yes. Since historical data all ends up in the .hst file, you can create that file directly, See PeriodConvertor code for file layout.
how to writer code to import data to MT4,instead of importing it manually?
- Kenz987 replied May 20, 2010
free free free — I like free. Ninja trader basic is free. The Gain data feed for fx is free. Futures is free if you have a live account with a broker that supports it (several do, see NT forum for list). NT charts are better than MT4, with x ...
4 to 8 years MT4 data @ 1 min TF
- Kenz987 replied May 19, 2010
Some folks use HIstory Center to get data. I usually don't use it, but rather get data from Gain and Ninja trader servers with the NT charting program. Then move it to MT. Gain also has a tick data archive at RateGain . com.
4 to 8 years MT4 data @ 1 min TF
- Kenz987 replied May 17, 2010
First thing: Untangle those nested "if"s and Print out their returned values.
How to call value from H1 using iCustom ?
- Kenz987 replied May 15, 2010
hayseed: Yu Da Man! Thanks. ps: Just really love that pic of you trading from a deer stand!
usefulness of indicators and smaller TF's
- Kenz987 replied May 15, 2010
No vouchers here. Have no idea how to get them. Couldn't care less. Use a 15 SECOND chart with a few simple indicators that help show trend and a 1-minute overlay with the same kind of indicators. Basically trade a congestion breakout for a few ...
usefulness of indicators and smaller TF's
- Kenz987 replied May 12, 2010
COC — url see post #4 I wrote a Compute On Close wrapper for a HP indicator. It's a hack, not great clean code, but you can see what it takes to get the job done.
another day another challenge. indicatorCounted()
- Kenz987 replied May 12, 2010
IndicatorCounted and computing every tick makes the indicator repaint - not good for an EA. Why waste CPU cycles when what you really want is a compute on close? Do the indi counted routine on first load of the indi to back fill the chart (for ...
another day another challenge. indicatorCounted()
- Kenz987 replied May 9, 2010
help — OrderSend and other commands just highlight the keyword and hit F1
finnished my first indicator now want to add EA to it. a few questions.
- Kenz987 replied May 7, 2010
Don't much care for the platform, tho it might have improved since I last tried it. But tried the Excel API interface (on demo) and it was sooooo ssllllooowwwwww to get an order filled.
VT Trader platform - good or not?
- Kenz987 replied May 7, 2010
I do believe your basic assumption is not correct. (External) Function code gets loaded once on it's first call, after that it stays in memory and is not reloaded again. It might get paged out, but that is out of your control. If you are running out ...
How to close a function within the EA