- This topic has 1 reply, 2 voices, and was last updated 4 days ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Optuma Forums › Optuma Scripting › Script help!
hi all,
Having some difficulty getting the below scripts to work:
Indicator 1 – CLOSE is lower than LOW of previous 5 days
V1 = CLOSE(Day(PERIODAMOUNT=1)) ;
V2 = LOWESTLOW(Day(PERIODAMOUNT=1), BARS=3, INCBAR=True, INSIDEBAR=False);
V1 < V2
Indicator 2 – CLOSE is highe than yesterday’s HIGH
V1 = CLOSE(Day(PERIODAMOUNT=1));
V2 = HIGHESTHIGH(Day(PERIODAMOUNT=1), BARS=1, INSIDEBAR=False, INCBAR=True);
V1>V2
Its just not showing up any signals where this condition is true for some reason!
Hi,
With your first script, you have the current bar being included in the LowestLow calculation, meaning the Close can never be lower than the V2 line. If you swap INCBAR=True to INCBAR=False you will find results being returned.
For the second script, it can be simplified by using the following:
1 2 3 |
CLOSE() > HIGH(1) |
Cookie | Duration | Description |
---|---|---|
cname | 14 days | This cookie is set by Optuma. The cookies is used to store the users campaign selection for selecting the correct version of Optuma to trial and is "Necessary". |
cookielawinfo-checbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |