Hello all, I have been emailing Alexander with Gordago, and here is the deal, he is getting setup with Plimus, so you can purchase the software. I did get the live version today, and for the price you can't go wrong, also on or after Aug.8 there is going to be some upgrades, not shure what yet. I will find out on adding custom indicators, to the system ,that would help alot. Here is output from a sampe code it did, from his sample.
Also Scorpion, I beleive he is using the API for data.
Scorpion would you be interested in becoming a reseller for him???
Let me know and I will see if I can get ya set up. I just don't have the knowlage you have, to offer any support.

You are the wizard

and i am just a fly on the wall.
//+------------------------------------------------------------------+
//| Copyright 2005, Gordago Software Corp. |
//|
http://www.gordago.com/ |
//+------------------------------------------------------------------+
#property copyright "Copyright 2005, Gordago Software Corp."
#property link "http://www.gordago.com"
extern double lStopLoss = 25;
extern double sStopLoss = 20;
extern double lTrailingStop = 20;
extern double sTrailingStop = 15;
extern double Lots = 0.1;
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int start(){
int cnt, ticket;
if(Bars<100){
Print("bars less than 100");
return(0);
}
if(lStopLoss<10){
Print("StopLoss less than 10");
return(0);
}
if(sStopLoss<10){
Print("StopLoss less than 10");
return(0);
}
double diMA0=iMA(NULL,15,9,0,MODE_EMA,PRICE_CLOSE,0);
double diMA1=iMA(NULL,15,30,0,MODE_EMA,PRICE_CLOSE,0);
double diRSI2=iRSI(NULL,5,13,PRICE_CLOSE,0);
double diMACD3=iMACD(NULL,30,12,26,0,PRICE_CLOSE,MODE_MAI N,0);
double diMACD4=iMACD(NULL,30,12,26,9,PRICE_CLOSE,MODE_SIG NAL,0);
int total=OrdersTotal();
if(total<1){
if(AccountFreeMargin()<(1000*Lots)){
Print("We have no money. Free Margin = ", AccountFreeMargin());
return(0);
}
if ((diMA0>diMA1 && diRSI2<30)){
ticket=OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,0, "gordago simple",16384,0,Green);
if(ticket>0){
if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES )) Print("BUY order opened : ",OrderOpenPrice());
}
else Print("Error opening BUY order : ",GetLastError());
return(0);
}
if ((diMACD3<diMACD4)){
ticket=OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,0," gordago sample",16384,0,Red);
if(ticket>0) {
if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES )) Print("SELL order opened : ",OrderOpenPrice());
}
else Print("Error opening SELL order : ",GetLastError());
return(0);
}
}
for(cnt=0;cnt<total;cnt++) {
OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
if(OrderType()<=OP_SELL && OrderSymbol()==Symbol()) {
if(OrderType()==OP_BUY){
}else{
}
}
}
}
This system allows you to use different stops T/S ,and T/P, On Long And Short.
If you wnat to purchase it now here is the bank info he sent me for wire tranfer
1. Union Bank of California International, New York , USA, swift: BOFCUS33NYK account № 91-274753-1121 of IMPEXBANK, Moscow, Russia, swift: IMPERUMM in favour account № 30301840200000000343 of branch "Kazansky"
for credit to Lutsenko Alexander Nikolaevich, account 423 018 402 004 800 034 98
2. The Bank of New York, New York, USA, swift: IRVTUS3N
Account № 890-0487-550 of IMPEXBANK, Moscow, Russia, swift: IMPERUMM
In favour account № 30301840200000000343 of branch «Kazansky»
for credit to Lutsenko Alexander Nikolaevich, account 423 018 402 004 800 034 98
1. Union Bank of California International, New York , USA, swift: BOFCUS33NYK account № 91-274753-1121 of IMPEXBANK, Moscow, Russia, swift: IMPERUMM in favour account № 30301840200000000343 of branch "Kazansky"
for credit to Lutsenko Alexander Nikolaevich, account 423 019 787 004 800 004 36
2. The Bank of New York, New York, USA, swift: IRVTUS3N
Account № 890-0487-550 of IMPEXBANK, Moscow, Russia, swift: IMPERUMM
In favour account № 30301840200000000343 of branch «Kazansky»
for credit to Lutsenko Alexander Nikolaevich, account 423 019 787 004 800 004 36
Is it possible to use it for payment? :sweatdrop
Also If it will help any I would be happy to try to write a simple code for anybody that wants to see how good it turns out as an experament.
Let Me Know if you have any questions for him, I have to translate everything to russian so he understands but I would be happy to help as much as I can.
Turbotrader