- This topic has 1 reply, 2 voices, and was last updated 1 year 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 › OBV
Hi
I need some help to create a script to the indicator OBV when he cross de MA20 days, when he cross up TRUE and he cross down false. Is it possible?
Thanks by adavnce.
Best Regards
Bruno Freitas
Hi,
If you are wanting the script to return a True result when the OBV crosses above the MA line, and stay true until it has crossed back below, the following script will work:
1 2 3 4 5 6 7 8 9 10 |
//Set Indicators V1 = OBV() ; V2 = MA(V1, BARS=20, CALC=Close) ; //Set Criteria V3 = V1 CrossesAbove V2; V4 = V1 CrossesBelow V2; //Set True False States SWITCH(V3,V4) |
This uses the default OVB values.
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. |