Recent content by fxtraders

  1. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    SetBarsRequired( -2, -2 ); Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); function tf_ma(e,d) { global i; for (i=e; i<d; i++) { tf = i * in1Minute; TimeframeSet(tf); meme =MA(C, 15); TimeframeRestore(); } m =...
  2. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    Done ! No Error .. But, It doesn't print range .. !! SetBarsRequired( -2, -2 ); Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); global i; function tf_ma(e,d) { for (i=e; i<d; i++) { tf = i * in1Minute; TimeframeSet(tf); meme...
  3. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    Merry christmas to all folks .. Syntax errors are {,), or comma kind of error. There're four brackets ({) properly within function .. It shows error in below line. return TimeFrameExpand(meme,tf,expandPoint);
  4. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    ........:vomit: Hope All folks doing good .. Amazing!! There's no syntax error, still it shows syntax error.. SetBarsRequired( -2, -2 ); Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); function tf_ma(e,d) { for (i=e; i<d; i++) {...
  5. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    Elon Musk: Life is an illusion .. -- Don't take anything seriously .. continuing my hood language .... Problem 1: Plot( C, "Close", ParamColor( "Color", colorDefault ), styleNoTitle | ParamStyle( "Style" ) | GetPriceStyle() ); expandmode = expandFirst; TF = in15Minute; TimeFrameSet( TF )...
  6. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    Atleast, it shouldn't be from someone. who doesn't even know, "How to write proper sentence!". Let's make it so politely. You can say, I do not have mutual understanding even after telling me lot of times. So, explain me, "What the heck do you want to say?" Then, I will tell you in the...
  7. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    I was writing something else.. but .... Last few bars exploration without selecting last couple of bar in range box .. i guess here no need of addrow() for just one column.. not working though .. Plot( C, "Close", ParamColor( "Color", colorDefault ), styleNoTitle | ParamStyle( "Style" ) |...
  8. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    exploration should not be like: 3:15,3:00,2:45,2:30,2:15,2:00... it's wrong.. It should be: 3:15, 2:45,2:30,2:15,1:45 .....(such candle represent bull candle time ) It is not working this way .. OR ... Step 1: Copy below code, do exploration while b.setting is 1 min. Plot( C, "Close"...
  9. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    Plot( C, "Close", ParamColor( "Color", colorDefault ), styleNoTitle | ParamStyle( "Style" ) | GetPriceStyle() ); expandmode = expandfirst; TF = in15Minute; TimeFrameSet( TF ); dt = DateTime(); bull = C>O; TimeFrameRestore(); expanddt = TimeFrameExpand( dt, TF, expandmode ); expandbull =...
  10. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    expandfirst when you use start of interval .. It's wrong output: only looking for 15 minute bull candle, not all candle sequence .. exploration should not be like: 3:15,3:00,2:45,2:30,2:15,2:00... it's wrong.. It should be: 3:15, 2:45,2:30,2:15,1:45 ..... It is not working this way ...
  11. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    filter = fifteenn; isn't solving the problem .. or function bull(P) { Pv = C>O; return Pv; } p = datetime(); xyz = bull(p); isn't work either...
  12. F

    Bull candle time WRONG OUTPUT (use exploration and see it)

    We try to compare 1 min . and 15 min. candle close Of course we're not going to change setting, it's default 1 minute. Now if we do exploration, it gives wrong output for 15 min. We only looking for bull candle close time. For 1 min. working fine as default settings is 1 min. Use Code...
  13. F

    Array size of each candle/bar in amibroker ? with working C code

    As you might know, amibroker is similar to C .. that's what I've been told .. Below C code that count number of digits. C program that count size of array. 2 to <10 . .array size: 8 I've no idea , how to do it in amibroker ?even though it's similar to C , belowcode is C program #include...
Back
Top