- Search Crypto Craft
- Kenz987 replied Feb 14, 2010
Connect to Gain demo (for fx cash data), but do not open a demo account so leave name and password null, and put Demo in the Mode, and use ninja trader servers as the backfill. Open a chart of you desired symbol and backfill it to get the amount of ...
Backtest with Ninja Trader
- Kenz987 replied Jan 29, 2010
look up the swiss ephemeris site - i don't have the link handy also, .astrowin . net(i think) or . com - plenty of free source code in VB that uses the ephemeris data and does different things with it.
Planetary Cycles Trading (EUR/USD)
- Kenz987 replied Jan 27, 2010
re: post 56 — S-G: Thank you for the posts. As a learning example for us, can you talk about what happened in Nov-09 to get the minus return. Ken.
Forex Options Strangle System
- Kenz987 replied Jan 26, 2010
\n — string sSomeComment = "blah n blah2"; there needs to be a newline character, not sure if the example is correct n or \n, but close to it. C is peculiar about the backslashes, see it underlined that last one, I didn't do it. ;=)
Stupid question
- Kenz987 replied Dec 31, 2009
look for the turtle traders site
broker has historical data for soybeans and coffee
- Kenz987 replied Dec 26, 2009
15-seconds (on ninja or oanda), or renko - see threads on renko trading
Best interval for Intraday/Scalping
- Kenz987 replied Dec 21, 2009
advantages - yes — NT - x-tick and x-seconds charts, with proper grid lines and y-axis scaling, try that with MT4. Also, free.
there is 100% free data feed for Ninjatrader or not?
- Kenz987 replied Dec 20, 2009
use brocompany or fxpro maybe odl and others
Broker with 24Hr Indices Stream
- Kenz987 replied Dec 18, 2009
1. The messy way: Use some sendkeys program. 2. The easy way: Move the script to an EA and have it run 1 cycle and then stop.
AutoStart Scripts in MT4
- Kenz987 replied Dec 11, 2009
see help: double iClose(string symbol, int timeframe, int shift) also use iTime or another method to get correct shift.
how to code this
- Kenz987 replied Dec 4, 2009
NT — Free version of Ninja Trader already does that with a free connection to Yahoo. If you must have the data in MT4, then export it from NT and import it into MT4. However, there are several MT4 brokers that have stock CFDs - ODL, FxPro, ...
MT4 Broker offering stock charts
- Kenz987 replied Nov 27, 2009
slope of line — I think the basic formula for slope (or a point on a line?) is y=mx+b, and from that you can compute other values. Do an internet search on slope, different formulas. ... Or ..., if you really want to get into math: use trig ;=)
Trend Line Future Value
- Kenz987 replied Nov 26, 2009
Hi S-G: Just curious here. Would you compare this method with using Iron Condors... Thanks, Ken.
Forex Options Strangle System
- Kenz987 replied Nov 26, 2009
IB (Interactive Brokers?) - go to this group: url There are guys there that have done it - not an easy task.
create a dom for trading
- Kenz987 replied Nov 20, 2009
ticket=OrderSend(MarketInfo("GBPUSD",MODE_ASK),OP_BUY,0.1,Ask,3,Ask-20*Point,Ask+22*Point); ticket=OrderSend("GBPUSD",MarketInfo("GBPUSD",MODE_ASK),OP_BUY,0.1,Ask,3,Ask-20*Point,Ask+22*Point);
What is wrong with this script?
- Kenz987 replied Nov 20, 2009
insert this after your print statement: Print("err msg: " + ErrorDescription(GetLastError())); ps: also, if you are on a 5-digit broker your points will not work.
What is wrong with this script?
- Kenz987 replied Nov 20, 2009
See manual — Highlight OrderSend and hit F1. 1) note the function returns an integer - that is an important number - use it 2) tp and sl are in price, not pips 3) use GetLastError
What is wrong with this script?