#81 (permalink)  
Old 09-07-2005, 12:33 PM
Freshman
 
Join Date: Sep 2005
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Shahin is on a distinguished road
Default

Metatrader backtester ofcourse (1tick). I know it is not great, but it is better than metastock for example.
Reply With Quote
  #82 (permalink)  
Old 09-07-2005, 01:00 PM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,972
Thanks: 119
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

No, metatrader does not backtest in ticks but timeframe bars.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #83 (permalink)  
Old 09-07-2005, 01:44 PM
Freshman
 
Join Date: Sep 2005
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Shahin is on a distinguished road
Default

I don't like to argue, but...
No if you said metastock (you would be correct).
Metatrader does in fact backtest in ticks which you can easily test by putting a print statement in your expert and see all the ticks that are generated.
Reply With Quote
  #84 (permalink)  
Old 09-07-2005, 01:49 PM
gazuz's Avatar
Senior Trader and Moderat
 
Join Date: Aug 2004
Posts: 768
Thanks: 1
Thanked 8 Times in 5 Posts
gazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to all
Default

If you are talking about MT4 then I agree they do backtest with ticks now
__________________
____________________________\¦/
___________________________(ò ó)
______________________o0o___(_)___o0o__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
Reply With Quote
  #85 (permalink)  
Old 09-07-2005, 02:01 PM
gazuz's Avatar
Senior Trader and Moderat
 
Join Date: Aug 2004
Posts: 768
Thanks: 1
Thanked 8 Times in 5 Posts
gazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to all
Default

Now back tot he system, I thoughjt i corrected everything and apparently it only corrected in one way...

http://forex1000.com/cnet/trade1.jpg

As you can see the first BUY trade was good and was exactly what I wanted, the candle after the cross. BUT in the sell trade it made the trade on the crossing candle (the one before was at 4.9949). This is really odd because it's basically just the inverse of the buy method. check it out:

Code:
AboveCurrent = (CurrentCCI > (Buy_Cross_Point)); AbovePrevious = (iCCI(CCI_Period,1) > (Sell_Cross_Point)); BelowCurrent = (CurrentCCI < (Sell_Cross_Point)); BelowPrevious = (iCCI(CCI_Period,1) < (Buy_Cross_Point)); AbovePrevious2 = (iCCI(CCI_Period,2) > (Sell_Cross_Point)); BelowPrevious2 = (iCCI(CCI_Period,2) < (Buy_Cross_Point));
Code:
If TotalTrades < 1 Then { If (AbovePrevious2) and (BelowPrevious) and (BelowCurrent) Then { SetOrder(OP_SELL, Lots, bid, slippage, bid+StopLoss*Point, bid-TakeProfit*Point, Gold); Alert("CCI Expert Opened a Sell Trade",".",Symbol); Exit; }; If (BelowPrevious2) and (AbovePrevious) and (AboveCurrent) Then { SetOrder(OP_BUY, Lots, ask, slippage, ask-StopLoss*Point, ask+TakeProfit*Point, white); Alert("CCI Expert Opened a Buy Trade",".",Symbol); Exit; }; };
Now also if anyone has time how can I limit a "one trade per candle"? If its possible of course...

Please let me know what I can change and add.

Thank you
__________________
____________________________\¦/
___________________________(ò ó)
______________________o0o___(_)___o0o__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
Reply With Quote
  #86 (permalink)  
Old 09-07-2005, 02:02 PM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,972
Thanks: 119
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

I mean deable ticks, not fractual interpolation ticks (or fake ticks).
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #87 (permalink)  
Old 09-07-2005, 02:18 PM
Freshman
 
Join Date: Sep 2005
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Shahin is on a distinguished road
Default

Both Mt3 & MT4 have one option in backtester that uses ticks. MT4 does a better job and yes it will use actuall ticks (as much as it has).
Reply With Quote
  #88 (permalink)  
Old 09-07-2005, 02:26 PM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,972
Thanks: 119
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

No offend, Shahin, do you know what tick means?
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #89 (permalink)  
Old 09-07-2005, 02:39 PM
Freshman
 
Join Date: Sep 2005
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Shahin is on a distinguished road
Default

Ok, no offense taken. I agree with the following meaning from Investopedia.

Tick
What does it Mean? The minimum upward or downward movement in the price of a security.


Example by Shahin: So in some cases it is a difference between .0001 (1/10000) of price where as in others it is 1/100 like .01.

I hope I am not making anybody upset.

BTW. I don't charge much

Last edited by Shahin : 09-07-2005 at 03:12 PM.
Reply With Quote
  #90 (permalink)  
Old 09-07-2005, 02:43 PM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,972
Thanks: 119
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

Gazuz, to allow only 1 trade per candle, replace
Code:
If TotalTrades < 1 Then
with
Code:
If TotalTrades < 1 And Volume < 10 Then
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 02:55 AM.
Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0

Registered members have access to special online forex currency trading tools, software, mt4 expert advisors and indicators. Register now

Main Menu

Economic Forecast