What best indior to entry signal and TREND? -
1 2 3 4 ...

thread: What best indior to entry signal and TREND?

  1. #11
    Junior Member Oxscoty's Avatar
    17
    (I'm junior member, so unfortunately I'm not permitted to open new threads - that is the reason I shall post here, I believe that'll answer your question too ):

    Several hours ago I had been playing around and serendipitous (less or more ) created that Indior. The base frame is taken from ADXcrosses indior (e.g. init, deinit, barcount).

    The connected #Momentum onChartSignals Indior indior appears to some data (momentum, adx, rsi, cci), does some mathematic operations and uses adx rsi as activate (take a look into the source, it is easy to understand)....
    This indior do , as forward evaluation, it publish arrows, not just 1 buy or sell arrow, information, if you using this indior maybe require heiken ashi indior to confirm the trend.

  2. #12
    Junior Member Deathlok's Avatar
    18
    The problem with this indior is that it recalculates every tick: it must only calculate at the close of the pub.

    Does anybody know how to do this?

  3. #13
    Member Fuark's Avatar
    41
    Inserted Code datetime lastbartime; if (Time#91;0#93;! = lastbartime) lastbartime = Time#91;0#93;; //do stuff

  4. #14
    Junior Member Deathlok's Avatar
    18
    Thanks - but it did not help. It's still drawing down or up arrows on the current pub, rather than waiting until the pub is shut.

  5. #15
    Member Fuark's Avatar
    41
    Remember the
    Inserted Code datetime lastbartime;
    must be declared at the onset of the indior, and NOT inside the start() work!

    Inserted Code ///////// ///blah blah ///copyright blah blah industries 1875 ////// datetime lastbartime; init() //blah deinit() //more blah start() if (lastbartime ! = Time#91;0#93;-RRB- lasbartime = Time#91;0#93;; //INSERT THE REST OF YOUR NORMAL CODE HERE

  6. #16
    Junior Member Deathlok's Avatar
    18
    It makes no difference.... Still paints arrows until the pub is shut. Can you try your code with this indior?

  7. #17
    Member Fuark's Avatar
    41
    I'm not in the mood to play around with someone elses code for what should be a easy implementation. I hate other individuals scripting because it's usually ugly and wrong. The solution is straightforward and I have given it to you.

    If something has been done on the current pub then that tells me you don't understand something. Either you have not implemented the very simple code showed you correctly or the rest of your code is bugged.

    I would take a guess that in the script somewhere you're basing all calculations concerning the current bar and so you're either adding an arrow thing or placing a buffer value in the pub positioned at Time[0]. If incorporating an item then there'll, undoubtedly, be a Time[0] in the createobject parameters which clearly has to be set to Time[1]. If placing a buffer then clearly the buffername[0] will probably have to be changed to buffername[1].

    Again, and of course, whatever calculations have been done to set or not set an arrow should be based from the preceding bar instead of the current bar which seems to be your entire problem with this script.

  8. #18
    Junior Member AnaHysteray's Avatar
    13
    your stomach!!

  9. #19
    D?aGlwz
    Guest
    (I'm junior member, so sadly I'm not allowed to open new threads - that is the reason I shall post here, I believe that'll answer your question also):

    Some hours ago I had been playing about and serendipitous (more or less) created that Indior. The base frame consists of ADXcrosses indior (e.g. init, deinit, barcount).

    The connected #Momentum onChartSignals Indior indior appears to some information (momentum, adx, rsi, cci), does some mathematic operations and uses adx rsi as activate (have a look to the origin, it is simple to...
    sir is this still repainting let meknow

  10. #20
    (I'm junior penis, so sadly I'm not permitted to open new threads - that is why I shall post here, I believe that will answer your query also):

    Some hours ago I had been playing around and serendipitous (more or less) created that Indior. The base frame consists of ADXcrosses indior (e.g. init, deinit, barcount).

    The connected #Momentum onChartSignals Indior indior appears to a information (momentum, adx, rsi, cci), does some mathematic operations and uses adx rsi as activate (have a look to the source, it is simple to understand)....
    You probably got this by Karl Dittman's internet page. I have discovered his web page the first time I began researching about forex. In the start all his free indiors appeared profitable, fortunately I was working on a demo account. They are not that good. He provides you with all these free indiors to convince you eventually to buy his super excellent indior with precision.

    I believe internet page is a scam, but that is only my view, I'm still a junior member on this forum and new trader to the market, began 6 month past.

    The only way you are ever going to become profitable is if you create your own system and understand that the market, not rely on someones indior that tells you what to do with out excuse.

  •