• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 8:46pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:46pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Top 100 best Trading Systems: post good Trading Systems here 38 replies

Are the best systems also the systems that fail most spectacularly? 55 replies

multiple systems per pair/multiple pairs per system? 3 replies

Systems, Systems and Systems... 1 reply

VTTrader: New Indicators & Trading Systems Only: No Discussions please 70 replies

  • Commercial Content
  • /
  • Reply to Thread
  • Subscribe
  • 570
Attachments: Multiple Trading systems gbpusd only
Exit Attachments
Tags: Multiple Trading systems gbpusd only
Cancel

Multiple Trading systems gbpusd only

  • Last Post
  •  
  • 1 6061Page 626364 66
  • 1 61Page 6263 66
  •  
  • Post #1,221
  • Quote
  • Nov 10, 2010 6:32pm Nov 10, 2010 6:32pm
  •  whatfx
  • | Joined Jun 2010 | Status: The Villain | 2,565 Posts
Quoting nkhawaja
Disliked
dude, you have the exact same problem as i do. confusing ourselves with the systems. I see you are all over the forum. It won't work this way

123 system is very old technique and folks in thread is trying at the moment. Some of the charts are with other filters and kind of squiggly lines now.
Ignored
no mate, you are wrong. iam not 'all over the forum'. iam here to learn. that is what forexfactory is for. so why not learn as much as you can ?
 
 
  • Post #1,222
  • Quote
  • Edited 8:18pm Nov 11, 2010 4:42pm | Edited 8:18pm
  •  robdee
  • Joined Jul 2006 | Status: Mighty Mooloo Country | 480 Posts
In my opinion GBPUSD is locked inside a sideways range past 24 hrs. I haven't found any trend in there that I can trade.

Has anyone been able to make profits on GBPUSD in past 24 hours ?

Attached Image (click to enlarge)
Click to Enlarge

Name: 123patternsv6-gbpusd-m2-20101111.gif
Size: 12 KB
 
 
  • Post #1,223
  • Quote
  • Nov 11, 2010 5:24pm Nov 11, 2010 5:24pm
  •  Kreator
  • | Joined Oct 2010 | Status: Member | 56 Posts
Quoting robdee
Disliked
In my opinion GBPUSD is locked inside a sideways range past 24 hrs. I haven't found any trend in there that I can trade.

Has anyone been able to make profits on GBUSD in past 24 hours ?

Attachment 578369
Ignored

two trades on euro.. but without trade on gbp....
you can see on my h1 chart, nice trend is going, first pa touch my ma line, and then it flow in wave with the trend..

and on rb chart you can see how this trend is developing.... with your 123 signals..

just perfect...

guys, just look at your higher tf, chart tosee nice trend .. and switch to rb chart and wait for signals..

Ps.. robdee. now signals are perfect.. you can post updates.. for 123 indi...

regards. kreator
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: h1.png
Size: 39 KB
Click to Enlarge

Name: rbar.indi-signals.png
Size: 43 KB
 
 
  • Post #1,224
  • Quote
  • Nov 11, 2010 8:37pm Nov 11, 2010 8:37pm
  •  robdee
  • Joined Jul 2006 | Status: Mighty Mooloo Country | 480 Posts
I you are already using 123Patterns indicator you might be interested in this add-on that I made (Kreator's idea). This add-on is called 123Alarms and it gives an audio (WAV file) alarm plus a popup to let you know when price is starting to break a line. Think of it as an early warning system before the signal is printed on the close of the candle.

Other files you'll need...

123PatternsV6 indicator

Free Rangebars indicator
(or your own rangebars script)

123Alarms indicator

All my indicators are free for personal non-commercial use.
All I ask is that my copyright is respected.


I'll keep track of all suggestions for improvements to future versions. Private messages are the best way to send feedback to me about the indicator.

Here is the code... (see file attached at end of post for download)
Inserted Code
//+-----------------------------------------------------------+
//| MT4 CUSTOM INDICATOR                       123Alarms.MQ4  |
//| copy to [experts\indicators] and recompile or restart MT4 |
//+-----------------------------------------------------------+
//| Free software for personal non-commercial use only.       |
//| No guarantees are expressed or implied.                   |
//| Feedback welcome via Forex Factory private message.       |
//+-----------------------------------------------------------+
#property copyright "Copyright © 2010 Robert Dee"
#property link      "www.forexfactory.com/robdee"

#define INDICATOR_VERSION    20101110       // VERSION 1
#define INDICATOR_NAME       "123Alarms"
#define RELEASE_LEVEL        "Public"
#define MT4_BUILD            226

#property indicator_chart_window

extern string IndicatorName  = "123PatternsV6";  // name of custom indicator to use for price alarms
extern string AlarmSound     = "symbol";         // WAV files must be in MT4\sounds folder, set to "symbol" to use audusd.wav etc.
extern int    AlarmRepeat    = 6;                // number of times to repeat the sound
extern int    AlarmDelay     = 10;               // delay in seconds before repeating the sound
extern bool   AlarmPopup     = True;             // true means popup is enable, pops once per alarm

int      alarmcount;
double   alarmprice;
datetime alarmtime, lastsoundtime;

//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
{
if(AlarmSound == "symbol") AlarmSound = Symbol()+".wav";
} // end of init()

//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
{
double upperline = iCustom(NULL,0,IndicatorName,0,3); // use upperline value from previous closed candle
double lowerline = iCustom(NULL,0,IndicatorName,1,3); // use lowerline value from previous closed candle

if(Time[1] != alarmtime && upperline != alarmprice && lowerline != alarmprice) alarmcount = 0; // reset the alarm

while(Open[0] < upperline && High[0] > upperline)
   {
   // popups
   if(AlarmPopup == True && alarmprice != upperline) {Alert(Symbol()+" breaking upperline at "+DoubleToStr(upperline,Digits)); alarmprice = upperline;}
   // sounds
   if(alarmcount >= AlarmRepeat) break;                 // do no more
   if(TimeCurrent() < lastsoundtime+AlarmDelay) break;  // do no more
   PlaySound(AlarmSound);
   lastsoundtime = TimeCurrent();
   alarmtime = Time[1];
   alarmcount++;
   break;
   }

while(Open[0] > lowerline && Low[0] < lowerline)
   {
   // popups
   if(AlarmPopup == True && alarmprice != lowerline) {Alert(Symbol()+" breaking lowerline at "+DoubleToStr(lowerline,Digits)); alarmprice = lowerline;}
   // sounds
   if(alarmcount >= AlarmRepeat) break;                 // do no more
   if(TimeCurrent() < lastsoundtime+AlarmDelay) break;  // do no more
   PlaySound(AlarmSound);
   lastsoundtime = TimeCurrent();
   alarmtime = Time[1];
   alarmcount++;
   break;
   }

}// end of start()

//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
{
}// end of deinit()
123Alarms must be in the active profile to be processed and trigger the alarm. For me this means my active profile has six charts M1 and M2 for AUDUSD EURUSD and GBPUSD.

Kreator has been testing 123Alarms so he can answer questions about it.

Note: Three WAV files in sounds.zip are extracted to MT4\sounds folder, you can also make your own WAV files but they must be saved in this folder.
Attached File(s)
File Type: mq4 123Alarms.mq4   4 KB | 3,107 downloads
File Type: zip sounds.zip   148 KB | 3,298 downloads
 
 
  • Post #1,225
  • Quote
  • Nov 11, 2010 9:39pm Nov 11, 2010 9:39pm
  •  robdee
  • Joined Jul 2006 | Status: Mighty Mooloo Country | 480 Posts
Open MT4 Account History, select a trade, drag it up onto a chart with the same symbol. MT4 will draw arrows and lines to show trade entry and exits. Only works for closed trades, not for trades that are still open or pending.

I did this to see the previous trades on Zaman TradeWin...

Attached Image (click to enlarge)
Click to Enlarge

Name: zaman-tradewin-investorview.gif
Size: 11 KB
 
 
  • Post #1,226
  • Quote
  • Nov 12, 2010 2:30pm Nov 12, 2010 2:30pm
  •  zamanib
  • Joined Aug 2007 | Status: Member | 1,616 Posts
Since go live--

We had 6 trades 4 losses 196 pips 2 wins 100 pips net -96 pips (nov 11 to 12)

Ok guys last 2 days was not profitable- Was up 12% this month but back to negative the month is not finish yet.

Ok for the live signal on the demo account (investor) there were some glitch- with spread and broker fill the entry at the right time ( I notice sometime price move fast will not get the correct entry -- I will not get into broker fill problem) We had one extra trade which wa cause because of the spread if you look on the chart I attach you will see real deal -- I try to talk to my coder but he is busy (to fix match the ea with the fxtradewin signal) the ea does come close to it. I am not BS-ing trying to justify the loss

I still trying to get free hosting so the ea will be up for month to see and future months also. if any one know free hosting let me know.
Attached Image (click to enlarge)
Click to Enlarge

Name: 9.gif
Size: 34 KB
PROFITABLE TRADERS ARE NOT LUCKY BUT ARE WELL PREPARED
 
 
  • Post #1,227
  • Quote
  • Nov 13, 2010 7:39am Nov 13, 2010 7:39am
  •  zamanib
  • Joined Aug 2007 | Status: Member | 1,616 Posts
30 trades 17 losess 13 winners

loss 699 win 650 net -49 pips

Hope to end in positive this month also--
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: nov1-5.gif
Size: 35 KB
Click to Enlarge

Name: nov5-11.gif
Size: 37 KB
Click to Enlarge

Name: nov11-12.gif
Size: 33 KB
PROFITABLE TRADERS ARE NOT LUCKY BUT ARE WELL PREPARED
 
 
  • Post #1,228
  • Quote
  • Nov 16, 2010 3:11am Nov 16, 2010 3:11am
  •  kknotty
  • | Joined Jul 2009 | Status: Member | 69 Posts
So, how come nobody is posting winnngs here anymore? Have the traders here all gone on AWOL?
A missed Money is better than a lost Money
 
 
  • Post #1,229
  • Quote
  • Nov 16, 2010 5:38am Nov 16, 2010 5:38am
  •  zamanib
  • Joined Aug 2007 | Status: Member | 1,616 Posts
Quoting kknotty
Disliked
So, how come nobody is posting winnngs here anymore? Have the traders here all gone on AWOL?
Ignored
I am real trader -- I dont hide my losses -- all who has investor login can CLEARLY see the lossess and win

We had 1 win 4 lossess -- does that mean the system is toasted (hell no) we had all winning months for this year and hope that November will be the same
Attached Image (click to enlarge)
Click to Enlarge

Name: tradewin.gif
Size: 16 KB
PROFITABLE TRADERS ARE NOT LUCKY BUT ARE WELL PREPARED
 
 
  • Post #1,230
  • Quote
  • Nov 16, 2010 12:34pm Nov 16, 2010 12:34pm
  •  Kreator
  • | Joined Oct 2010 | Status: Member | 56 Posts
Quoting kknotty
Disliked
I wasn't talking to you Zam. But since you replied, is 1 win 4 lossess a good thing for the so called holy grail, Tradewin?
Ignored

i am here, trading 123 with range bar indi... all users want to talk about tradewin, so im am not posting anything, untill someone ask something about 123 sistem..

regards...
 
 
  • Post #1,231
  • Quote
  • Nov 16, 2010 2:39pm Nov 16, 2010 2:39pm
  •  nkhawaja
  • | Joined Sep 2010 | Status: Member | 84 Posts
Quoting Kreator
Disliked
i am here, trading 123 with range bar indi... all users want to talk about tradewin, so im am not posting anything, untill someone ask something about 123 sistem..

regards...
Ignored
I have serious doubts about tradewin . Honestly i think any system will work if proper money management is followed and all systems will fail if they are not followed per money management. I am coming to the conclusion that Risk to Reward Ration and proper MM is the key and consistency is crucial. Please keep posting 123 or any other system you feel like working.
 
 
  • Post #1,232
  • Quote
  • Nov 16, 2010 3:35pm Nov 16, 2010 3:35pm
  •  fxbond
  • | Joined Oct 2010 | Status: Member | 13 Posts
hi,
sorry for my english...
it`s not the system, it`s the GBPUSD. to much zick zack up and down since april 2010.
i traded the system profx for more then 9 month, no range bars but uses also bands. the system works very good some month with over 1000pips profit no loosing month. but since april this year the system dosn`t work, because the cable does what he want up and down intraday zick zack etc. got loss over loss, trades who are in profit goes straight to sl.

better lock on the EURUSD, much better trends there since months. since september with range bars and supertrend over 1500pips in the eurusd tp50 sl50max. some trades run over 200pips.

today 1loss on win for me. trade goes more then 130 in profit (short trade).

maybe someone can code an ea for the supertrend?

anybody have the 2min offline chart for the eurjpy? don`t know where to get it!

:-)
 
 
  • Post #1,233
  • Quote
  • Nov 16, 2010 4:11pm Nov 16, 2010 4:11pm
  •  robdee
  • Joined Jul 2006 | Status: Mighty Mooloo Country | 480 Posts
Quoting zamanib
Disliked
I am real trader -- I dont hide my losses -- all who has investor login can CLEARLY see the lossess and win

We had 1 win 4 lossess -- does that mean the system is toasted (hell no) we had all winning months for this year and hope that November will be the same
Ignored
Zaman, congratulations very few (on FF) have courage and honesty to show the truth about their trades, keep up the good work and look forward to your results. RD

PS I am down -29% this month as can be seen in MyJournal.
 
 
  • Post #1,234
  • Quote
  • Nov 17, 2010 6:24am Nov 17, 2010 6:24am
  •  ukcool
  • | Joined Apr 2007 | Status: Member | 458 Posts
Quoting robdee
Disliked
Zaman, congratulations very few (on FF) have courage and honesty to show the truth about their trades, keep up the good work and look forward to your results. RD

PS I am down -29% this month as can be seen in MyJournal.
Ignored

Very true , you will see on so many threads just winning trades posted and the losses not even mentioned.
In one way this makes me angry, because it is deception.
Any newbies trying that same system pick uo false signals, yet the guru of that system is so lucky he only catches the good ones and then you see those posted.
 
 
  • Post #1,235
  • Quote
  • Nov 19, 2010 11:06am Nov 19, 2010 11:06am
  •  zamanib
  • Joined Aug 2007 | Status: Member | 1,616 Posts
I will give update on tradewin over the weeken or when this week is over.

I have been looking at next system-- with 50 pips rangebars
Indicator -- fast ema 21 slow ema 14 rsi 17
Price move or close over the 21 and 14 ---with the rsi above the 50 line all 3 must line up-- if anyone was in the inverstor login would have notice I took the last trade on this new method

robdee if you can make an indicator to do show arrow and alert will be nice and possible ea

for october & november no losses using this method

It will be nice if someone can download back history and see the result
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: emarsi.jpg
Size: 130 KB
Click to Enlarge

Name: emarsioct.jpg
Size: 163 KB
PROFITABLE TRADERS ARE NOT LUCKY BUT ARE WELL PREPARED
 
 
  • Post #1,236
  • Quote
  • Nov 21, 2010 9:35am Nov 21, 2010 9:35am
  •  zamanib
  • Joined Aug 2007 | Status: Member | 1,616 Posts
17 win 850 24 loss 1004 net -154 pips

max drawdown -20.7% max profif 19.5%

current status 15.4% down

hope to recover this week in positive
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: nov1-5.gif
Size: 37 KB
Click to Enlarge

Name: nov5-11.gif
Size: 39 KB
Click to Enlarge

Name: nov12-18.gif
Size: 37 KB
Click to Enlarge

Name: nov18.gif
Size: 37 KB
PROFITABLE TRADERS ARE NOT LUCKY BUT ARE WELL PREPARED
 
 
  • Post #1,237
  • Quote
  • Nov 22, 2010 1:17am Nov 22, 2010 1:17am
  •  nkhawaja
  • | Joined Sep 2010 | Status: Member | 84 Posts
Quoting zamanib
Disliked
17 win 850 24 loss 1004 net -154 pips

max drawdown -20.7% max profif 19.5%

current status 15.4% down

hope to recover this week in positive
Ignored
thanks for the honest results. the goal is to improve the system which hopefully with your consistency we will get.
 
 
  • Post #1,238
  • Quote
  • Nov 22, 2010 2:59am Nov 22, 2010 2:59am
  •  fxbond
  • | Joined Oct 2010 | Status: Member | 13 Posts
Quoting zamanib
Disliked
I will give update on tradewin over the weeken or when this week is over.

I have been looking at next system-- with 50 pips rangebars
Indicator -- fast ema 21...
Ignored
hi,

nice, take a look at the cci 17, think signals are a little better than rsi
 
 
  • Post #1,239
  • Quote
  • Nov 22, 2010 7:59am Nov 22, 2010 7:59am
  •  zamanib
  • Joined Aug 2007 | Status: Member | 1,616 Posts
Ok - testing tradewin on 50 pips rangebar seem to be doing better than 15 pips rangebars-
I will still give the update on 15 pips range bars
Attached Image (click to enlarge)
Click to Enlarge

Name: tradewin50.gif
Size: 45 KB
PROFITABLE TRADERS ARE NOT LUCKY BUT ARE WELL PREPARED
 
 
  • Post #1,240
  • Quote
  • Nov 22, 2010 8:03am Nov 22, 2010 8:03am
  •  zamanib
  • Joined Aug 2007 | Status: Member | 1,616 Posts
Quoting fxbond
Disliked
hi,

nice, take a look at the cci 17, think signals are a little better than rsi
Ignored
Thanks for the input
I added both cci and rsi -- we had nice 50 pips move up now sell signal everything line up rsi cci and the slow and fast ema -- it is on 50 pips rangebars
Attached Image (click to enlarge)
Click to Enlarge

Name: ema.gif
Size: 35 KB
PROFITABLE TRADERS ARE NOT LUCKY BUT ARE WELL PREPARED
 
 
  • Commercial Content
  • /
  • Multiple Trading systems gbpusd only
  • Reply to Thread
    • 1 6061Page 626364 66
    • 1 61Page 6263 66
0 traders viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023