K12 Posted January 13, 2009 Report Share Posted January 13, 2009 Guys, this is the article which explains all about PAIN. Sorry but I do not have the actual indicator. ;) http://www.forexrealm.com/technical-analysis/technical-indicators/price-action-indicator.html Quote Link to comment Share on other sites More sharing options...
William1713006271 Posted January 14, 2009 Report Share Posted January 14, 2009 Re: Price Action Indicator - PAIN Here\'s the indicator that i\'ve built. Since the article said that the time frame is daily, I set it to daily for default, however you could set any timeframe as you want. Read the input parameter instruction for details. Regards, Quote Ore no Shinka Hikari yo Hayai. Zen Uchi o Nani no Mono Ore no Shinka Chuito Kore Nai. Ten no Michi yo Iki. Subete o Sukosadoru Otoko. Link to comment Share on other sites More sharing options...
K12 Posted January 14, 2009 Author Report Share Posted January 14, 2009 Re: Price Action Indicator - PAIN Here\'s the indicator that i\'ve built. Since the article said that the time frame is daily, I set it to daily for default, however you could set any timeframe as you want. Read the input parameter instruction for details. Regards, I knew someone will do it. Great job. Cheers. :arrow: Quote Link to comment Share on other sites More sharing options...
Luffy-kun Posted May 23, 2009 Report Share Posted May 23, 2009 Re: Price Action Indicator - PAIN Thanks for share Bro Wil... Btw i just have thinking funny about the short name,,, PAIN Indicator, maybe someday we will have another Akatsuki or Naruto 'n Sasuke Indicator hehehehe... :mrgreen: :roll: :peace: Quote My Motto is: (D)o'a (U)saha (I)khtiar (T)awakal Link to comment Share on other sites More sharing options...
William1713006271 Posted May 23, 2009 Report Share Posted May 23, 2009 Re: Price Action Indicator - PAIN Could you post the PAIN indi in mq4 code,please? Thanks! :peace: Seems I lost the mq4. Just crack it with decompiler. Thanks for share Bro Wil... Btw i just have thinking funny about the short name,,, PAIN Indicator, maybe someday we will have another Akatsuki or Naruto 'n Sasuke Indicator hehehehe... :mrgreen: :roll: :peace: :D However, do you know that in reality Uchiha and Hyuuga are real strong ninja clans back then. One of the famous one in legend (they said) is Uchiha Sarutobi, since you are naruto lover I think you would remember that the 3rd hokage is named Sarutobi. If you watch many ninja movies from Japan, you will recognize that Uchiha and Hyuuga are often considered as the strong ninja in the movie. That's because those 2 clans are real clans and strong clans in history. Well, just an intermezzo :D Regards, Quote Ore no Shinka Hikari yo Hayai. Zen Uchi o Nani no Mono Ore no Shinka Chuito Kore Nai. Ten no Michi yo Iki. Subete o Sukosadoru Otoko. Link to comment Share on other sites More sharing options...
osaze Posted July 7, 2009 Report Share Posted July 7, 2009 Re: Price Action Indicator - PAIN Pls could someone explain how to use this indicator??? I used daily timeframe of this indicator on a 1hr chart and it doesn't seem to work properly. I feel am using this indicator wrongly... Quote One obvious truth.FOREX IS ANYTHING BUT EASY Link to comment Share on other sites More sharing options...
butter143 Posted July 9, 2009 Report Share Posted July 9, 2009 Re: Price Action Indicator - PAIN Here\'s the indicator that i\'ve built. Since the article said that the time frame is daily, I set it to daily for default, however you could set any timeframe as you want. Read the input parameter instruction for details. Regards, thank you william Quote Link to comment Share on other sites More sharing options...
matka Posted July 14, 2009 Report Share Posted July 14, 2009 Re: Price Action Indicator - PAIN Could you post the PAIN indi in mq4 code,please? Thanks! :peace: h**p://slil.ru/27835316 enjoy Quote Link to comment Share on other sites More sharing options...
hatter1000 Posted July 15, 2009 Report Share Posted July 15, 2009 Re: Price Action Indicator - PAIN Thanks for posting - but I think its repainting to show better results Quote Link to comment Share on other sites More sharing options...
tongtoro Posted August 1, 2009 Report Share Posted August 1, 2009 Re: Price Action Indicator - PAIN maybe, somebody can write the manual, very confusing Quote Link to comment Share on other sites More sharing options...
noone22 Posted August 1, 2009 Report Share Posted August 1, 2009 Re: pollan,Simple, but good it's a good indicator. it's based into BBS-index indicator Cannot decompile this Pollan.ex4 What is BBS-index? Quote Link to comment Share on other sites More sharing options...
Guest jaet1989 Posted August 3, 2009 Report Share Posted August 3, 2009 Re: Price Action Indicator - PAIN //Pollan ex4 decompiled for you................................. /* Generated by EX4-TO-MQ4 decompiler V4.0.224.1 [] Website: http://purebeam.biz E-mail : [email protected] */ #property copyright "Copyright © 2009, MetaQuotes Software Corp." #property link "http://www.metaquotes.net" #property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 Red double g_ibuf_76[]; double g_icustom_80; double g_icustom_88; double gd_96; double gd_104; double gd_112; double gd_120; double gd_128; double gd_136 = 0.0; extern int n = 2; int init() { SetIndexStyle(0, DRAW_LINE); SetIndexBuffer(0, g_ibuf_76); string ls_0 = "Pollon"; IndicatorShortName(ls_0); return (0); } int deinit() { return (0); } int start() { int l_ind_counted_0 = IndicatorCounted(); int li_4 = 1; g_icustom_80 = iCustom(NULL, 0, "RSI", 0, li_4); g_icustom_88 = iCustom(NULL, 0, "CCI", 0, li_4); Comment(g_icustom_80, " ", g_icustom_88); indi(); return (0); } void indi() { double ld_24; int li_0 = IndicatorCounted(); if (li_0 >= 0) { if (li_0 > 0) li_0--; for (int li_4 = Bars - li_0; li_4 >= 0; li_4--) { gd_96 = iCustom(NULL, 0, "CCI", 0, li_4) - iCustom(NULL, 0, "RSI", 0, li_4); gd_104 = iCustom(NULL, 0, "CCI", 0, li_4 - 1) - iCustom(NULL, 0, "RSI", 0, li_4 + 1) - (iCustom(NULL, 0, "CCI", 0, li_4) - iCustom(NULL, 0, "RSI", 0, li_4)); gd_112 = iCustom(NULL, 0, "CCI", 0, li_4 - 2) - iCustom(NULL, 0, "RSI", 0, li_4 + 2) - (iCustom(NULL, 0, "CCI", 0, li_4 - 1) - iCustom(NULL, 0, "RSI", 0, li_4 + 1)); gd_136 = iCustom(NULL, 0, "CCI", 0, li_4 - n) - iCustom(NULL, 0, "RSI", 0, li_4 + n) - (iCustom(NULL, 0, "CCI", 0, li_4 - (n - 1)) - iCustom(NULL, 0, "RSI", 0, li_4 + (n - 1))); if (gd_96 > gd_104 && gd_96 > gd_112 && gd_96 > gd_136) gd_120 = gd_96; if (gd_104 > gd_96 && gd_104 > gd_112 && gd_104 > gd_136) gd_120 = gd_104; if (gd_112 > gd_96 && gd_112 > gd_104 && gd_112 > gd_136) gd_120 = gd_112; if (gd_136 > gd_96 && gd_136 > gd_104 && gd_136 > gd_112) gd_120 = gd_136; if (gd_96 < gd_104 && gd_96 < gd_112 && gd_96 < gd_136) gd_128 = gd_96; if (gd_104 < gd_96 && gd_104 < gd_112 && gd_104 < gd_136) gd_128 = gd_104; if (gd_112 < gd_96 && gd_112 < gd_104 && gd_112 < gd_136) gd_128 = gd_112; if (gd_136 < gd_96 && gd_136 < gd_104 && gd_136 < gd_112) gd_128 = gd_136; ld_24 = gd_120 + gd_128; g_ibuf_76[li_4] = ld_24; } } } Quote Link to comment Share on other sites More sharing options...
Guest jaet1989 Posted August 3, 2009 Report Share Posted August 3, 2009 Re: Price Action Indicator - PAIN // PAIN indicator decompiled for you all /* Generated by EX4-TO-MQ4 decompiler V4.0.224.1 [] Website: http://purebeam.biz E-mail : [email protected] */ #property copyright "Copyright © 2008, MetaQuotes Software Corp." #property link "http://www.metaquotes.net" #property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 Black extern string IIIIIII = "1440 for daily"; extern string IIIIIIII = "10080 for weekly"; extern string IIIIIIIII = "43200 for monthly"; extern string IIIIIIIIII = "0 for current TF"; extern int myPeriod = 1440; double g_ibuf_112[]; int init() { SetIndexBuffer(0, g_ibuf_112); return (0); } int deinit() { return (0); } int start() { double l_shift_12; double l_iopen_20; double l_iclose_28; double l_ihigh_36; double l_ilow_44; int l_ind_counted_8 = IndicatorCounted(); int li_0 = Bars - l_ind_counted_8; for (int li_4 = li_0 - 1; li_4 >= 0; li_4--) { l_shift_12 = iBarShift(Symbol(), myPeriod, Time[li_4], FALSE); l_iopen_20 = iOpen(Symbol(), myPeriod, l_shift_12); l_iclose_28 = iClose(Symbol(), myPeriod, l_shift_12); l_ihigh_36 = iHigh(Symbol(), myPeriod, l_shift_12); l_ilow_44 = iLow(Symbol(), myPeriod, l_shift_12); g_ibuf_112[li_4] = (l_iclose_28 - l_iopen_20 + (l_iclose_28 - l_ihigh_36) + (l_iclose_28 - l_ilow_44)) / 2.0; } return (0); } Quote Link to comment Share on other sites More sharing options...
axl Posted February 22, 2011 Report Share Posted February 22, 2011 a bit dumb here..can ayone make the decompiled version into and indicator..thanks Quote Link to comment Share on other sites More sharing options...
paapi Posted February 22, 2011 Report Share Posted February 22, 2011 a bit dumb here..can ayone make the decompiled version into and indicator..thanks Here you go... http://www.multiupload.com/LIQY07L7HC hermes and dk1aussie 2 Quote Link to comment Share on other sites More sharing options...
axl Posted February 22, 2011 Report Share Posted February 22, 2011 thanks Paapi :) Quote Link to comment Share on other sites More sharing options...
scratch Posted February 25, 2011 Report Share Posted February 25, 2011 How does it work? Quote Link to comment Share on other sites More sharing options...
pikachu Posted February 9, 2014 Report Share Posted February 9, 2014 can anyone re-up in MultiCharts ?? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.