I am using an evaluation metric to reward the true positives and penalize the false positive ones retrieved by a function $f(\cdot)$. Indeed, it can be represented as follows: $\frac{\texttt{|TP|} - \texttt{|FP|}}{|\texttt{instances}|}$, where $\texttt{|TP|}$ and $\texttt{|FP|}$ are the number of true positives and false positives, respectively.
The goal is simple: selecting a function that maximizes $\texttt{TP}$ while minimizes $\texttt{FP}$.
I need to find a standard name for this formula to motivate its advantages for my work. I am familiar with "sensitivity", "specificity", "F-measure", "recall", and "precision". However, none of them computes what I'm evaluating here.