ty @Zheka for the comments,

I had tried calling tmf with entry statements but commented them out because they did not work:
//enterLong(tmf);
//enterShort(tmf);

The main issue I'm having is that the manual and all of the examples I've found call the tmf using just enterLong(tmf) or enterShort(tmf). However, I want to enter into either 3 long or short trades (depending on which way the price breaks out) with specific stops and different targets. This is why I have set up these:

enterLong(0,EntryHI,Range,Range); // (Lots, Entry, Stop, Target)
enterLong(0,EntryHI,Range,Range*2);
enterLong(0,EntryHI,Range,Range*3);
enterShort(0,EntryLO,Range,Range);
enterShort(0,EntryLO,Range,Range*2);
enterShort(0,EntryLO,Range,Range*3);

Obviously I'm doing something wrong, but reading the manual does not help as I can not find examples of what I'm trying to do. Any assistance would be greatly appreciated.