• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 6:04pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 6:04pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Please suggest a simple & effective Method/System of "Trading System" Forum to newbie 180 replies

The System Behind the System, by Merlin Jeffries 16 replies

200 Ema system - help me build a system ! 19 replies

Knife system, Vegas 4h system related questions. 4 replies

Would you trade this system? New system #2. 10 replies

  • Trading Systems
  • /
  • Reply to Thread
  • Subscribe
  • 136
Attachments: Chinese KONGFU system
Exit Attachments
Tags: Chinese KONGFU system
Cancel

Chinese KONGFU system

  • Last Post
  •  
  • 1 1415Page 161718 34
  • 1 15Page 1617 34
  •  
  • Post #301
  • Quote
  • Apr 12, 2017 9:04am Apr 12, 2017 9:04am
  •  AdiIonut
  • | Joined Apr 2017 | Status: Member | 10 Posts
How can i see what the indicators are measuring? i try to develop the base algorithm for EA
 
 
  • Post #302
  • Quote
  • Apr 12, 2017 9:53am Apr 12, 2017 9:53am
  •  emonts
  • Joined Nov 2013 | Status: Member | 494 Posts
Quoting AdiIonut
Disliked
How can i see what the indicators are measuring? i try to develop the base algorithm for EA
Ignored
Hi,

How about this

white_10 = iCustom(Symbol(),Period(),"liun_interval_index", 1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 1, 0);
white_11 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 1, 1);

white_20 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 0, 0);
white_21 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 0, 1);

yellow_10 = iCustom(Symbol(),Period(),"liun_interval_trend", 0.0, 2.0, 3.0, 0.0, 20.0, 20.0, 0, 0);
yellow_11 = iCustom(Symbol(),Period(),"liun_interval_trend", 0.0, 2.0, 3.0, 0.0, 20.0, 20.0, 0, 1);

yellow_20 = iCustom(Symbol(),Period(),"liun_interval_trend", 0.0, 2.0, 3.0, 0.0, 20.0, 20.0, 1, 0);
yellow_21 = iCustom(Symbol(),Period(),"liun_interval_trend", 0.0, 2.0, 3.0, 0.0, 20.0, 20.0, 1, 1);


BR
It is not important how often you fall down, but how often you get up again
 
 
  • Post #303
  • Quote
  • Apr 12, 2017 10:15am Apr 12, 2017 10:15am
  •  qayyum009
  • | Joined Feb 2013 | Status: Member | 4 Posts
Quoting emonts
Disliked
{quote} Hi, How about this white_10 = iCustom(Symbol(),Period(),"liun_interval_index", 1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 1, 0); white_11 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 1, 1); white_20 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 0, 0); white_21 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 0, 1); yellow_10 = iCustom(Symbol(),Period(),"liun_interval_trend", 0.0, 2.0, 3.0, 0.0, 20.0, 20.0, 0, 0); yellow_11 = iCustom(Symbol(),Period(),"liun_interval_trend",...
Ignored
Hey emonts !
That is easy part.
The hard path is developing the right algo , and just allowing one trade per trend ..
Hope you can help.
 
 
  • Post #304
  • Quote
  • Apr 12, 2017 10:31am Apr 12, 2017 10:31am
  •  emonts
  • Joined Nov 2013 | Status: Member | 494 Posts
Quoting qayyum009
Disliked
{quote} Hey emonts ! That is easy part. The hard path is developing the right algo , and just allowing one trade per trend .. Hope you can help.
Ignored
Try this,

upTrend = false;
if (white_21 > yellow_11 && white_20 > white_21)
{
upTrend = true;
}

if (!previousUptrend && upTrend && nbrOfBuyTrades == 0)
{
// look for touch of W2
if (Ask < white_20)
{
// open buy trade
OrderSendReliable(_symb, OP_BUY, startVolume, Ask, slippage, 0.0, 0.0, magicNumberBuy, "Uptrend trade", 0, 0);
previousUptrend = upTrend;
}
}

if (!upTrend) { previousUptrend = false;}

BR
It is not important how often you fall down, but how often you get up again
 
1
  • Post #305
  • Quote
  • Apr 12, 2017 10:38am Apr 12, 2017 10:38am
  •  SlownSteadyy
  • | Joined Jul 2016 | Status: Member | 83 Posts
Quoting Forexior
Disliked
WHITE1 indicator value on present and previous candle, white1<yellow2 white1[0]<white1[1] so you can figure out if its going up or down
Ignored
Quoting Forexior
Disliked
you can visualize WHITE and YELLOW as two clouds, when they cross - start looking signal entry from last point where they touched after the cross, keep in mind that there are different conditions for signal when clouds penetrate each other
Ignored
Quoting emonts
Disliked
{quote} Hi, If we see in the text White1, White2, Yellow1 or Yellow2; the lines in the chart are ment. White1 = upper White line, White2 is lower White line in the chart. If we see White1[0], this is the actual bar of the upper White1 line in the chart If we see White1[1], this is the previous bar of the upper White1 line in the chart BR
Ignored
Thanks Forexior and emonts Now it is clear to me

So when he says "uptrend: white2>yellow1 white2[0]>white2[1]" he means uptrend: white2>yellow1 and white2[0]>white2[1] correct?
 
 
  • Post #306
  • Quote
  • Apr 12, 2017 10:49am Apr 12, 2017 10:49am
  •  emonts
  • Joined Nov 2013 | Status: Member | 494 Posts
Quoting SlownSteadyy
Disliked
{quote} {quote} {quote} Thanks Forexior and emonts Now it is clear to me So when he says "uptrend: white2>yellow1 white2[0]>white2[1]" he means uptrend: white2>yellow1 and white2[0]>white2[1] correct?
Ignored
See post 2

BR
It is not important how often you fall down, but how often you get up again
 
1
  • Post #307
  • Quote
  • Apr 12, 2017 11:54am Apr 12, 2017 11:54am
  •  SlownSteadyy
  • | Joined Jul 2016 | Status: Member | 83 Posts
Quoting emonts
Disliked
{quote} See post 2 BR
Ignored
Thanks. Now I think I understand the strategy correctly. It's so simple and that why I like it. Time for back testing!
 
 
  • Post #308
  • Quote
  • Apr 12, 2017 12:15pm Apr 12, 2017 12:15pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting dean1star
Disliked
Here is a chart showing trades since Mid January too today on GBPUSD. Sure the Euro dollar would also work. Two pairs on long term trading can give you more than enough pips and with less headache of the screen time. Using the mainstream idea here that this trader is showing us, yes its logical to make pips. But how, in simplicty learn how to trade and then a system like this helps you to follow the market. Do nt just expect someone to give u an indicator and away you go and for sure why would he not keep the MQ4 - if you learn how to trade then...
Ignored
please don't change the system as you image...where is yellow on your chart.
 
 
  • Post #309
  • Quote
  • Apr 12, 2017 12:17pm Apr 12, 2017 12:17pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting emonts
Disliked
{quote} Hi, How about this white_10 = iCustom(Symbol(),Period(),"liun_interval_index", 1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 1, 0); white_11 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 1, 1); white_20 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 0, 0); white_21 = iCustom(Symbol(),Period(),"liun_interval_index",1.0, 1.0, 1.2, 0.0, 8.0, 8.0, 0, 1); yellow_10 = iCustom(Symbol(),Period(),"liun_interval_trend", 0.0, 2.0, 3.0, 0.0, 20.0, 20.0, 0, 0); yellow_11 = iCustom(Symbol(),Period(),"liun_interval_trend",...
Ignored
that's right.
 
 
  • Post #310
  • Quote
  • Apr 12, 2017 12:28pm Apr 12, 2017 12:28pm
  •  dean1star
  • Joined Apr 2011 | Status: Member | 2,421 Posts
Quoting liunliun
Disliked
{quote} please don't change the system as you image...where is yellow on your chart.
Ignored
If you read my post correctly you would of realised i do not trade your system i trade something similar i have no need to trade your system, no need to even think about your system and no wishes to try and even go near you system i came across you post as it is similar to how you trade that is all, period. My chart does not have your indicators on them because i dont use them - i have my own system i was outlining how with one of the indicators you use it is possible on two pairs to make 800 - 1000 pips on average monthly which seems to equate to more than your estimates if i think 30 percent per annum , in simplicty i would not trade your system i trade my own.

HERE IS MY QUOTE AGAIN - from that post.

Using the mainstream idea here that this trader is showing us, yes its logical to make pips.

USING the mainstream idea here - OK
 
 
  • Post #311
  • Quote
  • Apr 12, 2017 12:37pm Apr 12, 2017 12:37pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting dean1star
Disliked
{quote} If you read my post correctly you would of realised i do not trade your system i trade something similar i have no need to trade your system, no need to even think about your system and no wishes to try and even go near you system i came across you post as it is similar to how you trade that is all, period. My chart does not have your indicators on them because i dont use them - i have my own system i was outlining how with one of the indicators you use it is possible on two pairs to make 800 - 1000 pips on average monthly which seems to...
Ignored
ok good luck to you
 
 
  • Post #312
  • Quote
  • Apr 12, 2017 12:48pm Apr 12, 2017 12:48pm
  •  dean1star
  • Joined Apr 2011 | Status: Member | 2,421 Posts
Quoting liunliun
Disliked
{quote} ok good luck to you
Ignored
Btw you should loose the fear of the markets - it shows in your system especially as your idea has alot more potential to it and on a safe level too.
But then what works for one will always inspire another i suppose .. make em green those pips hey bubba
 
 
  • Post #313
  • Quote
  • Apr 12, 2017 12:55pm Apr 12, 2017 12:55pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting dean1star
Disliked
{quote} Btw you should loose the fear of the markets - it shows in your system especially as your idea has alot more potential to it and on a safe level too. But then what works for one will always inspire another i suppose .. make em green those pips hey bubba
Ignored
to be honest ,i don't really understand your post,like what is btw……
 
 
  • Post #314
  • Quote
  • Apr 12, 2017 12:56pm Apr 12, 2017 12:56pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting SlownSteadyy
Disliked
{quote} {quote} {quote} Thanks Forexior and emonts Now it is clear to me So when he says "uptrend: white2>yellow1 white2[0]>white2[1]" he means uptrend: white2>yellow1 and white2[0]>white2[1] correct?
Ignored
i think that is obvious
 
 
  • Post #315
  • Quote
  • Apr 12, 2017 12:59pm Apr 12, 2017 12:59pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting pairsniper
Disliked
whats difference than using different bollinger bands ? dont think there is a magic indicator can help you... delete all indicators and just try to see how price starts a move and when it returns... {image} {image}
Ignored
you know nothing, and you like ppl in Chinese bbs just say "trade is very easy ,we just sell on the top ,buy on the floor" but where are top and floor is a problem with no answer.
 
 
  • Post #316
  • Quote
  • Apr 12, 2017 1:00pm Apr 12, 2017 1:00pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting jarrodt
Disliked
感谢分享,有想过开一个中文版的吗?
Ignored
太麻烦了,而且我毕竟不是卖方法的,你们能看懂就好了。
 
 
  • Post #317
  • Quote
  • Apr 12, 2017 1:01pm Apr 12, 2017 1:01pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting qayyum009
Disliked
The strategy seems to be good . I was wondering If someone could Convert this strategy into EA. I have tried but Couldn't develop good algorithm. Thanks.
Ignored
trade manually ,you can get it/
 
 
  • Post #318
  • Quote
  • Apr 12, 2017 1:02pm Apr 12, 2017 1:02pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting SlownSteadyy
Disliked
Liunliun, First of all thanks for your strategy Please explain this to me You say "white arrow is white[0] yellow arrow is white[1]. means white[0] is NOW, white[1] is last candle" But when you explain uptrend you say downtrend: white1<yellow2 white1[0]<white1[1] Here what is "white1[1]"? Is it same as "white[1]" If you don't mind, can you please explain the "trend" using another name for "NOW" candle and "LAST CANDLE" Ex: white[0]=NOW white[1]=PREVIOUS
Ignored
white[1]>x means white1[1]>x and white2[1]>x is that clear?
 
 
  • Post #319
  • Quote
  • Apr 12, 2017 1:03pm Apr 12, 2017 1:03pm
  •  dean1star
  • Joined Apr 2011 | Status: Member | 2,421 Posts
Quoting liunliun
Disliked
{quote} i think that is obvious
Ignored
wont you show the other traders your losses that you aquire to make the 30 percent per annum.
as your system is now making less profit then before - the markets change your system has not and your getting caught out.

I think its obvious why you are here but best let your story unfold one piece at a time ..

I will come back in 6 months time this room will be empty and you know it - your fishing here for ideas from other traders in the hope they can improve your system as it needs it and so do you .. outta here and hey newbie traders be reallly carefull around here this guy is fish out of the water still very very slippery ok
 
 
  • Post #320
  • Quote
  • Apr 12, 2017 1:03pm Apr 12, 2017 1:03pm
  •  liunliun
  • Joined Mar 2017 | Status: Member | 394 Posts
Quoting Forexior
Disliked
you can visualize WHITE and YELLOW as two clouds, when they cross - start looking signal entry from last point where they touched after the cross, keep in mind that there are different conditions for signal when clouds penetrate each other
Ignored
although i have not seen whether or not your answer is right, thanks to you to help others.
 
1
  • Trading Systems
  • /
  • Chinese KONGFU system
  • Reply to Thread
    • 1 1415Page 161718 34
    • 1 15Page 1617 34
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