Forex



Go Back   Forex Trading > Downloads > Tools and utilities
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web 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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web 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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web 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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web 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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web 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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #117 (permalink)  
Old 08-05-2006, 10:02 PM
BluePearl's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 206
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web 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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web 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, 48 views)
File Type: zip StrategiesHelp.zip (75.2 KB, 56 views)
__________________
www.forextester.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web 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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
polarized fractal efficiency, strategy tester, trading blox trial, ultimate oscillator


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

Similar Threads
Thread Thread Starter Forum Replies Last Post
MY TURTLES EA - need Testers mikhaildgreat Expert Advisors - Metatrader 4 120 08-22-2009 06:50 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 11:17 AM.



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