>> how can i do that test?
You don't need to have another account to test it. I assume you are good at programming to implement the following.
You have an iterator i which counts trade index, every time you plan to enter you set i = i + 1.
When i div 2 == 0 you use strategy#1. When i div 2 == 1 you use strategy#2.
You make it so that both strategy cannot use more than 50% of your cash and they operate independently of each other meaning that their statistics (gains/losses) are counted independently. Yes, the results whether #1 is better than #2 is stochastic but running both for say a month or two (i.e., after a good number of trades) should already tell you which one delivers somewhat better results.
You customize strategies as you wish, e.g., by allowing different leverage levels. The point is to view your only account as two and deal with it. You can then extend it to many strategies and thus perform online tuning of hyperparameters by keeping better strategies and killing worse ones.
For instance, I run 48 bots with different hyperparameter values and periodically adjust/select better hyperparameter values.