Hi Mehdi
You are right, it is PTB19, sorry for the typo.
Since you are using the FTM combine mode, you will be able to use only the pins marked as FTMx_CHn for the selected modules and channels.
In the example I sent you, we are using FTM2 and the channels 0 and 1 for the combine mode, so you will be able to use only the pins that offer outputs for those channels. In this case those are PTB18 and PTB19 as shown in the PIN muxing table on chapter 10 of the Reference Manual.

So, if required, you can use any pin marked as FTMx_CHn by configuring the proper FTM module and channels for combine operation.
Said that, my recomendation for you is to change PTE0 with one of the FTMx_CHn pins. If you use PTE0, you won´t be able to use this FTM characteristic. The only option I see would be to determine how much does it takes to the MCU to enter the Timer Interrupt, then configure your timer to compensate that time. For example:
It takes to your MCU 400nS to enter the interrupt (hipotetical value)
You configure your timer to generate a IRQ after 600nS instead of 1uS
So your timer interrupts after 600nS + 400nS it takes to enter the IRQ = 1uS you need.
Please notice that using this approach does not guarantee precise 1uS periods since you will not only depend on the timer.
Saludos
Santiago Lopez