Enivid, nice work again. Any chance you would have a diagram/picture which would explain the criteria that are customize-able as parameters on the Pinbar. The words in the explanation aren't enough for my visual mind...
Enivid, nice work again. Any chance you would have a diagram/picture which would explain the criteria that are customize-able as parameters on the Pinbar. The words in the explanation aren't enough for my visual mind...
Has anyone on the forum done work with Profiles? I'm wondering how I can put the PinBar Indicator on 20 charts and have it give me an alert when one comes up? I think they have to be active, and I'm wondering if I can make them active, and yet minimized on a separate screen from the one that I may be working on currently.
Enivid, nice work again. Any chance you would have a diagram/picture which would explain the criteria that are customize-able as parameters on the Pinbar. The words in the explanation aren't enough for my visual mind...
They are perfect. So helpful. Thank you.I have added some images to the input parameter descriptions. I hope they help!
SendMail(Symbol() + " @ " + per + " - " + dir + " Pinbar", dir + " Pinbar on " + Symbol() + " @ " + per + " as of " + TimeToStr(TimeCurrent()));
SendNotification(Symbol() + " @ " + per + " - " + dir + " Pinbar");
if (UseEmailAlerts)
if (SendNotification)
Thank you Enivid for the prompt reply.There are two buffers in the indicator. In case of a bearish pinbar, the buffer #0 returns some non-EMPTY_VALUE (the price level where the smile face is drawn). In case of a bullish pinbar, the buffer #1 returns some non-EMPTY_VALUE (the price level where the smile face is drawn).
Hello Enivid,It is better to check the output against the language constant EMPTY_VALUE rather than against the "raw" number 2147483647.0.
Mode_Bearish = iCustom(Symbol(),0, "PinbarDetector", 0,true,false,false,0.33,0.4,true,false,false,0.1,0.5,1,0,0.1, 0,1); Mode_Bullish = iCustom(Symbol(),0, "PinbarDetector", 0,true,false,false,0.33,0.4,true,false,false,0.1,0.5,1,0,0.1, 1,1); if(Mode_Bearish != 2147483647.0 || Mode_Bullish != 2147483647.0) Print("Mode_Bearish",Mode_Bearish, " Mode_Bullish ", Mode_Bullish);