// Combine signals Buy = Buy1 OR Buy2;
Do not use ExRem if you want repeated signals. Instead, use ExRemSpan or manage state manually. 3. Controlling Position Size per Pyramid Level Use SetPositionSize() with the spcPercentOfEquity or spcPercentOfPosition flag inside your buy conditions.
// First entry signal Buy1 = Cross( C, MA(C, 20) ); // Second entry signal (add more) Buy2 = Cross( C, MA(C, 50) ) AND BarsSince(Buy1) > 0;
Get access to your Orders, Wishlist and Recommendations.
Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy. // Combine signals Buy = Buy1 OR Buy2;