- Search Crypto Craft
-
sangmane replied Mar 13, 2010hi chris, glad to know it works. if the result look promising, why not? although after months of EA-ing many strats, i'm a little bit skeptical about indicator reliability, especially those using averaging. let's see

"Candle Effect" Indicator
-
sangmane replied Mar 13, 2010pls check the file below. i simplify many of the original if-else logic, as it contains unnecessary redundant comparison
"Candle Effect" Indicator
-
sangmane replied Mar 13, 2010Lol, very funny.
Change it to FatherFunction() and see if it help.Updating EA Before Next Tick
-
sangmane replied Mar 12, 2010i see u r using decompiled indicator. pls find my "code from scratch" indicator below. the file name should be read "gapSpot"...
Horizontal line name
-
sangmane replied Mar 12, 2010static datetime NewTime; if(NewTime!=Time[0]) { NewTime = Time[0]; if (l_close_88 < l_open_96) { ld_104 = (l_open_96 - l_close_88) / Point; if (ld_104 > GapSize) ObjectCreate("high"+TimeCurrent (), OBJ_HLINE, 0, Time[0], l_close_88, 0, 0); }
Horizontal line name
-
sangmane replied Mar 11, 2010ObjectCreate("linename"+TimeCurrent(), OBJ_HLINE, 0, Time[0], l_close_88, 0, 0);
Horizontal line name
-
sangmane replied Mar 6, 2010there are 2 causes why your RSI value on screen seems doesn't refresh 1. price_median is calculated as (high+low)/2. when a new bar is forming on the screen, as long as the last tick is between the high and the low of the current bar, price_median ...
Could RSI value show most update value on eur/usd chart?
-
sangmane replied Mar 5, 2010sorry, i make some typo on the code. according to point 1, the code for BUY should be: if (diff>=270 && OrderOpenPrice()<Bid-StopLevel && MathAbs(OrderOpenPrice()-OrderStopLoss())>StopLevel) and for sell order, if (diff>=270 && OrderStopLoss()>=0 && ...
OrderModify error 1 HELP PLEASE
-
sangmane replied Mar 4, 2010it's an object created by indicator. to delete it, right click on chart, choose Objects List, and look for Object named "Label" wich has description "Need 6000..."
Can't Delete this Indicator?
-
sangmane replied Mar 4, 2010here is zigzsag based trendline i've just created. using a bit different algos, trying to make it Zuper Zimple...
drawing trendlines
-
sangmane replied Mar 4, 2010before call ordermodify to modify stoploss, check the following condition: for buy order 1. new sl should be lower than Bid-StopLevel 2. absolute difference between old sl and new sl should be greater than StopLevel for sell order 1. new sl should ...
OrderModify error 1 HELP PLEASE
-
sangmane replied Mar 4, 2010a picture worth a thousand words
Pin Bar wipes out all the trendlines -objectlists
-
sangmane replied Mar 4, 2010Hi, you make a typo. change this double FI= iCustom(NULL,"FI", 13,0,0); you forgot to include "TimeFrame" field. it should be double FI= iCustom(NULL,0,"FI", 13,0,0); and it doesn't relate to your lot calculation, altough you should use a more ...
What is wrong with this Normalizing function?
-
sangmane replied Mar 4, 2010shift is the number of bar back, start from current bar. by using shift = 0, you will get the current value, which will be updated every tick. while shift =1 will give you the value of the indicator on the last bar. if the indicator isn't a ...
Accessing More Than One Indicator in EA
-
sangmane replied Mar 3, 2010i think you better use shift = 1 instead of 0, like iCustom(NULL,......,1). using shift = 0, you will get the value updated every tick, while shift = 1, the value will be changed only once for one bar iCustom(NULL,......,shift)
Accessing More Than One Indicator in EA
-
sangmane replied Mar 3, 2010it is because label object (OBJ_LABEL) has corner properties. label will always be anchored to one of the four corners (top left, bottom left, top right, bottom right). why not use text object (OBJ_TEXT)?
script or Indicator for TEXT only
-
sangmane replied Mar 3, 2010Sorry Mike, I added alert and SendMail feature to the original file which delete all previous object like Fib lines. I should add those feature to PinBarFA2. Here is the mods, it should'nt delete any previous object
Pin Bar wipes out all the trendlines -objectlists
-
sangmane replied Mar 3, 2010your welcome mike. i'll have to go to bed now. it's 04.00 in indonesia

Pin Bar wipes out all the trendlines -objectlists
-
sangmane replied Mar 3, 2010Hi Mike, Just read your pm in my mail. It's not my indicator. I only modified the way the original code delete object when it reinitialized. Pls find the attached file below, added alert and sendmail (actually it has already had alert function, I ...
Pin Bar wipes out all the trendlines -objectlists