Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Tools and utilities


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack (7) Thread Tools Display Modes
  #111 (permalink)  
Old 08-03-2006, 04:51 PM
yacob's Avatar
Junior Member
 
Join Date: Jul 2006
Location: Brunei Darussalam
Posts: 5
yacob is on a distinguished road
Forex Tester

Does anyone have cracks for forextester?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #112 (permalink)  
Old 08-03-2006, 05:04 PM
Terranin's Avatar
Member
 
Join Date: Apr 2006
Posts: 42
Terranin is on a distinguished road
Quote:
Originally Posted by yacob
Does anyone have cracks for forextester?
Hehe, no cracks. I created the shield and it is strong enough.
__________________
www.forextester.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #113 (permalink)  
Old 08-03-2006, 05:09 PM
yacob's Avatar
Junior Member
 
Join Date: Jul 2006
Location: Brunei Darussalam
Posts: 5
yacob is on a distinguished road
I try to test my strategy i click fast test it says "enable only for registered version'



Quote:
Originally Posted by Terranin
Hehe, no cracks. I created the shield and it is strong enough.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #114 (permalink)  
Old 08-03-2006, 05:58 PM
Terranin's Avatar
Member
 
Join Date: Apr 2006
Posts: 42
Terranin is on a distinguished road
Quote:
Originally Posted by yacob
I try to test my strategy i click fast test it says "enable only for registered version'
Sure, this is limitation of the trial version. You should buy program to use all its functions. Good news: price is reduced to $135. You can test your strategy by pressing Connect button and enabling strategy execution. But testing period is limited for 1 month of history data.
__________________
www.forextester.com

Last edited by Terranin; 08-03-2006 at 06:02 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #115 (permalink)  
Old 08-03-2006, 09:32 PM
Member
 
Join Date: Dec 2005
Posts: 60
yousky is on a distinguished road
Yes, the As......... protection is not the simpliest to crack. Good choice Terranin, and combine with the ID Hard Drive for key is great !
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #116 (permalink)  
Old 08-04-2006, 02:10 AM
Terranin's Avatar
Member
 
Join Date: Apr 2006
Posts: 42
Terranin is on a distinguished road
Quote:
Originally Posted by yousky
Yes, the As......... protection is not the simpliest to crack. Good choice Terranin, and combine with the ID Hard Drive for key is great !
+ using protection api to make it impossible to remove, + some my additional tricks.
__________________
www.forextester.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #117 (permalink)  
Old 08-05-2006, 10:02 PM
BluePearl's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 204
BluePearl is on a distinguished road
terranin, will you post a code example of what the code would look like to test a strategy? on your web site you say it is similar in function to MT4.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #118 (permalink)  
Old 08-05-2006, 10:21 PM
Terranin's Avatar
Member
 
Join Date: Apr 2006
Posts: 42
Terranin is on a distinguished road
Quote:
Originally Posted by BluePearl
terranin, will you post a code example of what the code would look like to test a strategy? on your web site you say it is similar in function to MT4.
Sure, buy the way documentation for program contains all description how to write strategies and indicators with examples.

For example strategy that moves StopLoss to breakeven after profit for this order becomes bigger defined value. It uses some additional functions like a GetStopLossPoints, SetStopLossPoints that are included in StrategyInterfaceUnit and simplified strategy development.

Code:
//--------------------------------------------------------------------------
// Moves stop loss at all orders when profit is bigger defined value
// (c) Koshelev M.A.
//--------------------------------------------------------------------------
library StopMover;

uses
  StrategyInterfaceUnit;

var
  ProfitBigger: integer;
  NewStopLoss: integer;


{-----Init strategy----------------------------------------------------------}
procedure InitStrategy; stdcall;
begin
  StrategyShortName('StopMover');
  StrategyDescription('Moves stop loss when profit if bigger some value');

  RegOption('ProfitBigger', ot_Integer, ProfitBigger);
  ProfitBigger := 50;

  RegOption('NewStopLoss', ot_Integer, NewStopLoss);
  NewStopLoss := 10;
end;

{-----Done strategy----------------------------------------------------------}
procedure DoneStrategy; stdcall;
begin
  //
end;

{-----Reset strategy---------------------------------------------------------}
procedure ResetStrategy; stdcall;
begin
  //
end;

{-----Process single tick----------------------------------------------------}
procedure GetSingleTick; stdcall;
var
  i: integer;
begin
  for i:=0 to OrdersTotal - 1 do
    if OrderSelect(i, SELECT_BY_POS, MODE_TRADES) then
      if (OrderType in [tp_Buy, tp_Sell]) and (OrderProfitPips >= ProfitBigger) and
         (GetStopLossPoints(OrderTicket) <> NewStopLoss) then
        SetStopLossPoints(OrderTicket, NewStopLoss);
end;

exports

InitStrategy,
DoneStrategy,
ResetStrategy,
GetSingleTick;

end.
__________________
www.forextester.com

Last edited by Terranin; 08-05-2006 at 10:25 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #119 (permalink)  
Old 08-05-2006, 10:27 PM
Terranin's Avatar
Member
 
Join Date: Apr 2006
Posts: 42
Terranin is on a distinguished road
I also attached documentation with all supported functions for indicators and strategies.
Attached Files
File Type: zip IndicatorsHelp.zip (64.9 KB, 35 views)
File Type: zip StrategiesHelp.zip (75.2 KB, 40 views)
__________________
www.forextester.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #120 (permalink)  
Old 08-05-2006, 10:58 PM
Terranin's Avatar
Member
 
Join Date: Apr 2006
Posts: 42
Terranin is on a distinguished road
New build

New build 6 is available on the site. New features:

1. Added new functions to strategy interface to get information about an account: AccountBalance, AccountEquity, AccountMargin, AccountFreeMargin, AccountLeverage, AccountProfit.

2. Added progress indicators for data recalculations (File->Rebuild All,
File->Recount indicators).

3. Corrected mistake in strategy optimizer - last strategy parameter was invisible in the left down corner.

4. Added new command to strategy interface: "Breakpoint" that stops strategy executions and shows debug window. After closing this window strategy continue working.

5. Corrected mistake in swaps calculation.

6. Added new tool "Andrews' Pitchfork".

7. Now you can edit and delete indicators on the chart with right mouse click on them.
__________________
www.forextester.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
ultimate oscillator, polarized fractal efficiency

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/tools-utilities/575-strategy-testers.html
Posted By For Type Date
Services de signaux de trading - Placements, jeux et casino en ligne This thread Refback 11-05-2007 10:26 PM
programy do testowania This thread Refback 10-25-2007 08:41 AM
Services de signaux de trading - Placements, jeux et casino en ligne This thread Refback 10-21-2007 10:19 AM
programy do testowania This thread Refback 08-07-2007 01:16 PM
Discussion Forex Strategy This thread Refback 07-22-2007 04:05 AM
Forex Strategy This thread Refback 07-13-2007 12:53 AM
programy do testowania This thread Refback 07-02-2007 05:49 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
MY TURTLES EA - need Testers mikhaildgreat Expert Advisors - Metatrader 4 119 09-06-2008 07:54 AM
Looking for beta testers. AdamDuritz99 Tools and utilities 6 03-28-2007 07:47 AM
Time Bomb Tim Testers Needed thesource Post and compare Trades 1 01-16-2007 09:45 PM
2 EMA Strategy EA abrs70 Expert Advisors - Metatrader 4 6 01-12-2007 08:23 PM
FM strategy black ice Suggestions for Trading Systems 8 11-10-2006 02:33 PM


All times are GMT. The time now is 03:47 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.