Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Basic Or Statement?

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

    Basic Or Statement?

    I'm trying to test a strategy that exits at close by either an RSI level or a certain amount of days. However, I can't get it to work were the exit by days is working. I have tried if else statements and || seperators along with DaysSinceEntry statements? I know this sounds completely stupid but I can't find how to use or statements in the strategy creator. Any insight as to what I am doing wrong? I am only using yahoo free data. I thought the below would work....Please note I have no programming experience.



    // Condition set 2
    if (RSI(4, 0).Avg[0] > 55 || BarsSinceEntry[0] > 5)
    {
    ExitLongLimit(Close[
    0], "", "");



    // Condition set 2
    if (RSI(4, 0).Avg[0] > 55)
    else if (BarsSinceEntry() >5)
    {
    ExitLongLimit(Close[
    0], "", "");



    #2
    dirygoatee, first thing you would want to do is changing the Exit limit order to for example a market order, this way you can easily test if the issue is the condition you created or getting the resulting order to fill.

    So first exit condition you list here works for you?

    What is the signal name of your entry order?

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    670 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    379 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    111 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    575 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    582 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X