cond = 'a==1';
a=1;
if (cond)
b=0;
end
Hi! Is there a way to do the thing I wrote above? In a text variable I need to write a condition (even a complex one, using && and || too) and then in the IF statement I simply insert the variable. I tried this example but sadly it didn't work. Can you solve it?
Edit: more information to you!
I am backtesting different trading strategies for a project.
Inside the general M-file, I make use of a function for each strategy I need to tests. Each strategy gets in input data about the current situation and then the function evaluates the behavior of the trading strategy according to the data (and also according to margin requirements and other stuff independent from strategy). The only thing that is different in each function, is the entry or exit rule.
Each strategy has for sure entry and exit condition (for instance, "open a long position when ... and ..." or "close a short position when ... or ...").
In the main M-file I am using a cycle to simulate the time passing by, but I want to implement a further external cycle which represents the number of the strategy tested.
Furthermore, up to now each condition in IF-statements is written by hand and I would like to obtain a unique function (no more 1 for each strategy as now) that according to the cycle index of the strategy, would pass the entry and exit conditions taken from a matrix of strings.
I hope it could be possible to do that.
cond = 'a==1', 'a=1' is not a condition it's an assignment.a==1to start, then I guess you will need to useif eval(cond).eval(although not many). This isn't one of them (without having more background on the question).