Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,166,690 members, 7,865,751 topics. Date: Thursday, 20 June 2024 at 04:06 AM

Profedet's Posts

Nairaland Forum / Profedet's Profile / Profedet's Posts

(1) (2) (3) (4) (5) (6) (7) (of 7 pages)

Business / Re: Forex Trade Alerts - Season 3 by profedet: 10:43am On Dec 09, 2011
@ unclenna cheesy cheesy cheesy grin grin grin LOL

you are good, very good, but not too convincing, i have been bitten once, and i am a million times shy. i will not toe that gullible path any more, the one i toed some years back, they stole my work and then commercialized it, from a trusted forum in the USA. Guy, this is Naija, shine your eyes, cheesy cheesy cheesy grin grin grin LOL
Business / Re: Forex Trade Alerts - Season 3 by profedet: 10:38am On Dec 09, 2011
Thanks Concept and Tonjan, i must tell you i humbled i am to read from you guys, i respect you. Thanks.

Mr. Concept, i have said it times and times again i don't wish to sell this: "at all"

The simple concept this robot works on is " the bollinger band" only. I configured the EA for  deviation = 3.0, shift = 0, it takes a sell order when price breaks above the upper bollinger band and takes profit at 70 pips. Furthermore, if the price breaks below the lower bollinger band, it takes a buy order at the same TP. I have used it only on the 1 minute chart, since we have move activities there than other charts.
Business / Re: Forex Trade Alerts - Season 3 by profedet: 10:14am On Dec 09, 2011
Hi ladies and gents,

Comparing the results of my newly developed Forex ROBOT posted on pages 35, 39, 41 and 61 , on LIVE DEMO trading, and not back testing for close three weeks, i think am prep for REAL MONEY. I'll just watch it for a week or two, to find out it flaws "if any", and then trade for real money. Any "CONSTRUCTIVE", criticisms or "INFORMED" opinions?

Business / Re: Forex Trade Alerts - Season 3 by profedet: 12:45pm On Dec 07, 2011
an update of my new EA

Business / Re: Forex Trade Alerts - Season 3 by profedet: 11:47am On Nov 25, 2011
@Silibaba,

Thanks again, but it seems to me that you are biased about your proposition, well that is based on the experience you've had, leading to your "Halo effect". I stated categorically, that i neither sold nor have an intention of selling my EA, to prove my patriotism, i am uploading an EA code i developed in 2009, that trades fundamentally (news) for FREE. I am doing this because it was the EA some stole and pirated, so NLanders here you have it in Green.




You may apply it to as many currency pairs as you like. The input parameters of the EA are explained below.



StartTime       =  0500;                                    - time of the day when news is active or breaks. It is encoded as hours*100+minutes. That is 0500 means 5 AM.

EndTime         =  1900;                                    - time of the day news effect ends. It is encoded as hours*100+minutes. That is 1900 means 7 PM.

PipBuyEntry     =  100;                                    - distance in pips from bar open price at StartTime to the Buy entry price.

PipSellEntry    =  100;                                     - distance in pips from bar open price at StartTime to the Sell entry price.

StopLoss        =  500;                                       - Stop loss in pips

TakeProfit      =  500;                                      - Take profit in pips

Lots            =  1.00;                                            - lot size

AllowHedging    =  false;                             

  - if True then simultaneous open positions for Buy and Sell side are allowed (considering that all the rest of the entry conditions are satisfied). If False then position in only one direction is allowed at a time. When first position is closed and the entry conditions for the contrary position are satisfied the contrary position is opened.




Copy here and paste in the EA directory: (if you know nothing about EA, you might not know the working)



//+------------------------------------------------------------------+
//|                                 EA for trading fundamentals .mq4 |
//|                                      Copyright © 2009, Prof Edet |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2009, Prof Edet"


//---- input parameters
extern int       StartTime       =  0500;
extern int       EndTime         =  1900;
extern int       PipBuyEntry     =  100;
extern int       PipSellEntry    =  100;
extern int       StopLoss        =  500;
extern int       TakeProfit      =  500;
extern double    Lots            =  1.00;
extern bool      AllowHedging    =  false;

//======== Common Variables ===============
int slippage=30;
int magicEA=18092009;

bool OpenBuySignal,OpenSellSignal;
bool CloseBuySignal,CloseSellSignal;
datetime LastOpenTimeSell,LastOpenTimeBuy; 
int ticket;
double SL,TP;
int iStartTime, iEndTime;
int BuyOrders, SellOrders;

//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init()
{
   GetTradeTime();
   return(0);
}

int start()
{
   
   /*if(ticket>0)
   {
      OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES);
      OrderModify(OrderTicket(),OrderOpenPrice(),SL,TP,0,Pink);
   }
   SL=0; TP=0;
   ticket=0;*/

   GetTradeTime();
   GetSignals();   

   int TotalOrders = OrdersTotal();
   BuyOrders=0;
   SellOrders=0;
   //Close?
   for (int i=TotalOrders-1; i>=0; i--)
   {
      OrderSelect(i, SELECT_BY_POS,MODE_TRADES);
      if(OrderSymbol()==Symbol() && OrderMagicNumber()==magicEA)
      {       
         if(OrderType()==OP_BUY) BuyOrders++;         
         if(OrderType()==OP_SELL) SellOrders++;         

         if (OrderType()==OP_BUY && CloseBuySignal)
         {     
               OrderClose(OrderTicket(),OrderLots(),Bid,slippage,Pink);
               BuyOrders--;
         }
         else if (OrderType() == OP_SELL && CloseSellSignal)
         {     
               OrderClose(OrderTicket(),OrderLots(),Ask,slippage,Pink);
               SellOrders--;
         }
      }
   }   
   //Open Buy
   if(OpenBuySignal && BuyOrders==0)
   {     
      if(TakeProfit>0)
         TP = NormalizeDouble(Bid + TakeProfit*Point,Digits);
      if(StopLoss>0)
         SL = NormalizeDouble(Bid - StopLoss*Point,Digits);
      ticket = OrderSend(Symbol(),OP_BUY,Lots,Ask,slippage,SL,TP,"",magicEA,0,Blue);
      if(ticket<=0) Print("Buy failed!"wink;     
      LastOpenTimeBuy = Time[0];
   }
   //Open Sell
   if(OpenSellSignal && SellOrders==0)
   {   
      if(TakeProfit>0)
         TP = NormalizeDouble(Ask - TakeProfit*Point,Digits);
      if(StopLoss>0)
         SL = NormalizeDouble(Ask + StopLoss*Point,Digits);                     
      ticket = OrderSend(Symbol(),OP_SELL,Lots,Bid,slippage,SL,TP,"",magicEA,0,Red);
      if(ticket<=0) Print("Sell failed!"wink;     
      LastOpenTimeSell = Time[0];
   }
   return(0);
}

int GetSignals()
{

   double OP = Open[iBarShift(NULL,0,iStartTime,0)];
     
   OpenBuySignal  = BuyOrders==0 && (AllowHedging || (!AllowHedging && SellOrders==0)) &&
                    Close[0]-OP>PipBuyEntry*Point &&
                    Time[0]>=iStartTime && Time[0]<iEndTime &&
                    TimeDay(LastOpenTimeBuy)!=TimeDay(Time[0]);
   OpenSellSignal = SellOrders==0 && (AllowHedging || (!AllowHedging && BuyOrders==0)) &&
                    OP-Close[0]>PipBuyEntry*Point &&
                    Time[0]>=iStartTime && Time[0]<iEndTime &&
                    TimeDay(LastOpenTimeSell)!=TimeDay(Time[0]);
     
   CloseBuySignal = Time[0]>=iEndTime;
   CloseSellSignal = Time[0]>=iEndTime;
}

int GetTradeTime()
{
   int H,M;
   H = StartTime/100;
   M = StartTime - H*100;
   if(H>24) H = H % 24;
   iStartTime = StrToTime(TimeYear(Time[0])+"."+TimeMonth(Time[0])+"."+TimeDay(Time[0])+" "+H+":"+M);

   H = EndTime/100;
   M = EndTime - H*100;
   if(H>24) H = H % 24;
   iEndTime = StrToTime(TimeYear(Time[0])+"."+TimeMonth(Time[0])+"."+TimeDay(Time[0])+" "+H+":"+M);

//+------------------------------------------------------------------+ 
Business / Re: Forex Trade Alerts - Season 3 by profedet: 10:44am On Nov 25, 2011
Good Morning N-Landers.

i want to express my sincere gratitude to those who despite their tight schedules, took time out to constructively criticize and commented my EA, so that it becomes the best it can, i am truly HUMBLED, thanks so much. As a follow up of page 39, and 36 of my published updated EA performance, i will like to upload the last trade for today still showing a positive (PROFITABLE) trend. However, let me respond to the comments of respectable and honourable members of N-Lander traders.

@Ehizmac,

i must let you in on the fact that i have designed EAs that made between 85%- 97% success rate, that of course is not a bad result. i never sold any of them, and i dont intend to sell them. The thrust that propelled the development of this particular EA is to the beat the previous records and probably reach an optimal 99 or 99.9 percentile on the profit scale. On the stoploss issue, you and i know that stoploss setting most times only end up eating up ur funds in the long run, but that is not to say, it is not vital and important. This EA, was configure to set an embryonic stoploss and re-calibrates when the stoploss has been breached so that your fund remains intact (money management) while trying to pursue the goal of profit maximization. Thanks again


@Aguiyi,

Thanks for you comment i respect your opinion. The reason why i can't do that is simply because of copy right. Guy we both live in this God's own country "Nigeria". Two years ago, i designed an EA, for fundamental trading, it was synchronized with forex factory, and takes a position based on the news release. At a certain forum, someone told me to upload my EA, my "naive me" did, pronto, someone stole my codes, did a little packaging and made profit off my work, so bro that why i cannot tread that path anymore.


@Unclenna,

Thanks so much for your comment, first the EA was set to make 70 pips per trade, not the range you stated, so on the average it make between 350 pips- 700 pips per day, depending on market activity. Thanks once again for commenting on my winnings and the warningg about watching my back, i am sir.



@ Silibaba and Ehizmac

Thanks for you comment i respect your opinion. The reason why i can't do that is simply because of copy right. Guy we both live in this God's own country "Nigeria". Two years ago, i designed an EA, for fundamental trading, it was synchronized with forex factory, and takes a position based on the news release. At a certain forum, someone told me to upload my EA, my "naive me" did, pronto, someone stole my codes, did a little packaging and made profit off my work, so bro that why i cannot tread that path anymore.

Business / Re: Forex Trade Alerts - Season 3 by profedet: 12:41am On Nov 24, 2011
@dboy365

thanks man, i will try that, but want to be sure that this system works perfectly for at least 30 days faultlessly, then i will try it and show the result
Business / Re: Forex Trade Alerts - Season 3 by profedet: 10:38pm On Nov 23, 2011
@ ehizmac, i am updating the result of the system u commented on, there seem to be an improvement on the profit, as compared to the result on page 36 of this thread undecided

Business / Re: Forex Trade Alerts - Season 3 by profedet: 10:54am On Nov 22, 2011
@ehizmac

thanks, much appreciated, am keeping an eye for a long period, but like how long do i need to pattern a trend?
Business / Re: Forex Trade Alerts - Season 3 by profedet: 10:08am On Nov 22, 2011
@ Russy, the best combination of surge protection is bollinger band and parabolic SAR, it predicts trend after the spiky surge.

@dboy365 good morning sir

@odiaero, my bro i wasn'nt showing off, i just need you to help me with your expertise
Business / Re: Forex Trade Alerts - Season 3 by profedet: 9:18am On Nov 22, 2011
guys i just developed an EA that took me like 2 years, i am test running, and the EA was programmed for private use, see details of yesterday and today's trading, please expert advice and opinion - freestyle

Car Talk / Re: Ugandan Students Build An Electric Vehicle. Shame On Nigeria! by profedet: 1:23am On Nov 07, 2011
woooooooooooww, shocked shocked,

this is sooooo cooooooooooooool.

check out the vid on youtube


https://www.youtube.com/watch?v=SwyIYK4DmHw
Jokes Etc / Re: Boko Haram Trembles As Jack Bauer Flies To Naija by profedet: 11:29pm On Jul 09, 2011
First thing to Bleep up CTU is power outage.

Jack Bauer wont be able to do his speed driving stunts cos our roads are deplorable.

Jack Bauer wont be able to do his hide and seek in the slum, except in "baba Ijebu kisok"

He cant just move freely on the street, cos he has to settl the area boys at the junction.

Chloe wont do too well with her computer gimmicks, cos yahoo boys will hack into her system.

so, , tell me, how will he do well with his ctu team?
Properties / Profssional Agents And Estate Managers Must Read This Now by profedet: 10:23pm On May 13, 2011
i am in need of a miniflat around, ogudu estate, soluyi estate or anthony, ilupeju estate, akoka and ifako. the total package for this request is N500,000                            or                    if  i can get a miniflat at the bq section of duplexes that will take N350000 for one year only EXCLUDING commission  and agreement, or 2 bedroom flat that will take N350,000 for one year only EXCLUDING commission and agreement i will appreciate it. i will still prefer the areas i mentioned above     thanks so much
Properties / Re: Urgent ! Mini Flat Needed, My Total Package Budget Now N500,000 by profedet: 1:35pm On May 13, 2011
Nairalanders i am still expecting ur calls, please help me get one
Properties / Re: Urgent ! Mini Flat Needed, My Total Package Budget Now N500,000 by profedet: 9:01am On May 13, 2011
@Lakeside:

Thanks for your response, but will prefer the areas aforementioned
Autos / Urgent, Miniflat Needed My Total Package Is N450000 by profedet: 11:15pm On May 12, 2011
Mini flat needed in a serene, quite, neat and secured environment, my total package budget N450,000

Please Call now 08059187411 or 08028498520

prefered area

Ogudu GRA

Ogudu estate

Gbagada Estate

Akoka

Ifako Estate

Soluyi Estate

Anthony Estate

Ilupeju Estate


i will not mind detached B.Q of Duplexes too

Picture of the house will attract me more if it is convenient for you.

Call me now, 08059187411 or 08028498520.
Business / Urgent ! Miniflat Needed, Total Package N450,000 by profedet: 11:13pm On May 12, 2011
Mini flat needed in a serene, quite, neat and secured environment, my total package budget N450,000

Please Call now 08059187411 or 08028498520

prefered area

Ogudu GRA

Ogudu estate

Gbagada Estate

Akoka

Ifako Estate

Soluyi Estate

Anthony Estate

Ilupeju Estate


i will not mind detached B.Q of Duplexes too

Picture of the house will attract me more if it is convenient for you.

Call me now, 08059187411 or 08028498520.
Properties / Urgent! Miniflat Needed Total Package N450,000 by profedet: 11:11pm On May 12, 2011
Mini flat needed in a serene, quite, neat and secured environment, my total package budget N450,000

Please Call now 08059187411 or 0028498520

prefered area

Ogudu GRA

Ogudu estate

Gbagada Estate

Akoka

Ifako Estate

Soluyi Estate

Anthony Estate

Ilupeju Estate


i will not mind detached B.Q of Duplexes too

Picture of the house will attract me more if it is convenient for you.

Call me now, 08059187411 or 0028498520.
Jobs/Vacancies / Urgent! Mini Flat Needed My Total Package N450,000 by profedet: 11:09pm On May 12, 2011
Mini flat needed in a serene, quite, neat and secured environment, my total package budget N450,000

Please Call now 08059187411 or 0028498520

prefered area

Ogudu GRA

Ogudu estate

Gbagada Estate

Akoka

Ifako Estate

Soluyi Estate

Anthony Estate

Ilupeju Estate


i will not mind detached B.Q of Duplexes too

Picture of the house will attract me more if it is convenient for you.

Call me now, 08059187411 or 0028498520.
Politics / Urgent ! Mini Flat Needed Total Package N450,000 by profedet: 11:08pm On May 12, 2011
Mini flat needed in a serene, quite, neat and secured environment, my total package budget N450,000

Please Call now 08059187411 or 0028498520

prefered area

Ogudu GRA

Ogudu estate

Gbagada Estate

Akoka

Ifako Estate

Soluyi Estate

Anthony Estate

Ilupeju Estate


i will not mind detached B.Q of Duplexes too

Picture of the house will attract me more if it is convenient for you.

Call me now, 08059187411 or 0028498520.
Properties / Urgetnt! Mini Flat Needed My Total Package N450,000 by profedet: 11:06pm On May 12, 2011
Mini flat needed in a serene, quite, neat and secured environment, my total package budget N450,000

Please Call now 08059187411 or 0028498520

prefered area

Ogudu GRA

Ogudu estate

Gbagada Estate

Akoka

Ifako Estate

Soluyi Estate

Anthony Estate

Ilupeju Estate


i will not mind detached B.Q of Duplexes too

Picture of the house will attract me more if it is convenient for you.

Call me now, 08059187411 or 0028498520.
Properties / Urgent ! Mini Flat Needed, My Total Package Budget Now N500,000 by profedet: 10:38pm On May 12, 2011

Please my interest is only in the areas listed below, nothing less. Please, please (its due to proximity to place of work)

Mini flat needed in a serene, quite, neat and secured environment, my total package budget N500,000

Please Call now 08059187411 or 08028498520

prefered area

[list]
[li]Ogudu GRA.

Ogudu estate.

Gbagada Estate.

Akoka.

Ifako Estate.

Soluyi Estate.

Anthony Estate.

Ilupeju Estate.
[/li]
[li][/li]
[/list]

i will not mind detached B.Q of Duplexes too

Picture of the house will attract me more if it is convenient for you.

Call me now, 08059187411 or 08028498520.
Properties / Urgent, Urgent, Urgent: Xxxxxxxxx (mini Flat Desperately Needed) by profedet: 2:47am On May 04, 2011
DEar NL agents,

My wife and i including my new born baby girl are in urgent need of a mini flat around any of the following area:

1. Akoka
2. Sholuyi
3. ifako
4. gbagada
5. Ogudu (possibly gra)
6. Alapere, close to the express
7. palmgrove

The expected total package should b between N250,000 and N300,000
TV/Movies / Re: Which Of These Tv Programs, Will You Dont Want To Miss by profedet: 11:43pm On Sep 29, 2010
what of naija oldies like:

Dr. Who

The Avengers

Voltron

C.I. 5

Speed racer cartoon

G.force

Bird man

tales by moonlight

Feyikogbon

Knight rider

Stone man (, ring, ring do your thing)

men i miss the good old days.
Business / Re: Forex Trade Alerts by profedet: 10:21pm On Aug 24, 2010
Helo NL,

i just developed this EA today, tested it on a strategy tester and it gave me this.

please i need a candid opinion from fellow experts only, analysis this trade and tell me if its good to go live

Thanks

Education / Acca And Cfa Scholars, Lets Talk by profedet: 2:47pm On Aug 19, 2010
Hi NL,

Have you got details, hints and info on any of the aforementioned Pro-exam?

Then give them to us.
Education / Re: Unilag Masters Result Out (2010/2011) by profedet: 2:37pm On Aug 19, 2010
@poster

hi,

i think you got it all wrong, the list they have there is that of 2009/2010, and not 2010/2011. Note that the result is set to be released and published by mid-August (this week). Also, if you look at the lower part of the site's home page to your right you will notice that as at the time of typing the site has not been updated yet from the 10th of August. So don't give, your name will be there by the grace of God, cos i will like to see you there. Don't give up.
Autos / Re: SOLD SOLD SOLD Volkswagen Golf 2 For Sale .very Neat by profedet: 6:25pm On Aug 10, 2010
guy, to tell you the truth as my brother, that price like double the usual. well i wish you a happy sales
Autos / Re: I need a very Clean Car - Auto Transmission - Bora, Skoda Fabia/octavia by profedet: 11:33pm On Aug 09, 2010
i will appreciate pix
Autos / I need a very Clean Car - Auto Transmission - Bora, Skoda Fabia/octavia by profedet: 7:28pm On Aug 09, 2010
Hi NL,

i have a budget of N400,000 to N450,000 for any of these cars:

1. Bora
2. skoda octavia or fabia
3. 2000/2001 corolla
4. 2000-2002 passat

i will appreciate pictures, not too drained millage, best of working conditions and all the relevant details.

expecting reply
Politics / Re: Some Of Nigerian Police Now Use Two Guns At A Time Reasons Still Unknown? by profedet: 11:42am On Jun 04, 2010
For crying out loud what are those people on the left hand side of the pix still doing? amazed or afraid?, they should take to their hills and seek for cover cos of the ever present accidental discharge.

Come to think of it, are you sure the police man didn't hear a gun shot more sophisticated than his(robbers), so he had to sprint, but the guy in front is more athletics, so he is kind of running faster than the uniformed man.

One gun belongs to him, the other belongs to the other policeman who while running had his gun slipped off his hand, but went for his life ratner than the gun, so the guy in the pix had to help,

thats my opinion

(1) (2) (3) (4) (5) (6) (7) (of 7 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 61
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.