Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Within A Period

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • koganam
    replied
    Originally posted by delta20 View Post
    Thanks I thought

    // Go long we have an up bar and the 10 EMA crosses above 20 EMA within the last 5 bars
    if (Close[0] > Open[0] && CrossAbove(EMA(10), EMA(20), 5))


    That meant it only looked at the 5th bar back I did not realize it was looking at the whole 5 bar period.

    I do not know where the thanks button is otherwise I would send you one
    You cannot see the "THANKS" button that is on the same line as the "QUOTE" button that you used to reply to the post?

    Leave a comment:


  • delta20
    replied
    Thanks I thought

    // Go long we have an up bar and the 10 EMA crosses above 20 EMA within the last 5 bars
    if (Close[0] > Open[0] && CrossAbove(EMA(10), EMA(20), 5))



    That meant it only looked at the 5th bar back I did not realize it was looking at the whole 5 bar period.

    I do not know where the thanks button is otherwise I would send you one

    Leave a comment:


  • sledge
    replied



    Examples
    // Go short if CCI crossed above 250 within the last bar
    if (CrossAbove(CCI(14), 250, 1))
    EnterShort();

    // Go long if 10 EMA crosses above 20 EMA within the last bar
    if (CrossAbove(EMA(10), EMA(20), 1))
    EnterLong();

    // Go long we have an up bar and the 10 EMA crosses above 20 EMA within the last 5 bars
    if (Close[0] > Open[0] && CrossAbove(EMA(10), EMA(20), 5))
    EnterLong();

    Originally posted by delta20 View Post
    I am trying to create a condition where the DM- crossed DM+ within X bars.

    Using barsago seems to just return that specific number of bars

    I have this code. How could I change it to say the cross has happened within the last X (9) candles?

    Thanks Stefan

    CrossAbove(DM(DmiPeriod).DiMinus, DM(DmiPeriod).DiPlus, 1)

    Leave a comment:


  • delta20
    started a topic Within A Period

    Within A Period

    I am trying to create a condition where the DM- crossed DM+ within X bars.

    Using barsago seems to just return that specific number of bars

    I have this code. How could I change it to say the cross has happened within the last X (9) candles?

    Thanks Stefan

    CrossAbove(DM(DmiPeriod).DiMinus, DM(DmiPeriod).DiPlus, 1)

Latest Posts

Collapse

Topics Statistics Last Post
Started by kinfxhk, 07-14-2026, 09:39 AM
0 responses
125 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Started by kinfxhk, 07-13-2026, 10:18 AM
0 responses
105 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Started by kinfxhk, 07-13-2026, 09:50 AM
0 responses
85 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Started by kinfxhk, 07-13-2026, 07:21 AM
0 responses
105 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Started by kinfxhk, 07-11-2026, 02:11 AM
0 responses
84 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Working...
X