Yes, each preset gets loaded by itself, one at a time.
In order to have it on each preset, the blade style in each preset would need to have it.
I like to add a using statement in my config, like
using OnDemandBatteryLevel = AlphaL<TransitionEffectL<TrConcat<TrSmoothFade<500>,AlphaL<Mix<BatteryLevel,Red,Green>,SmoothStep<Scale<BatteryLevel,Int<0>,Int<35000>>,Int<-1>>>,TrDelay<1000>,TrSmoothFade<1000>>,EFFECT_BATTERY_LEVEL>,Ifon<Int<0>,Int<32768>>>;
Then at the tail end of all my bladestyles I can just add it like this:
StylePtr<Layers<
Stripes<1000,-300,Red,Rgb<128,0,0>,Black>,
TransitionEffectL<TrConcat<TrFadeX<Percentage<WavLen<EFFECT_FORCE>,20>>,Pulsing<Rgb<90,0,0>,Red,400>,TrDelayX<Percentage<WavLen<>,80>>,Rgb<255,80,80>,TrFade<800>>,EFFECT_FORCE>,
InOutTrL<TrConcat<TrInstant,HumpFlicker<Red,Black,50>,TrSmoothFade<1000>>,TrConcat<TrFadeX<WavLen<EFFECT_RETRACTION>>,HumpFlicker<Red,Black,50>,TrSmoothFade<1000>>,TransitionLoop<TransitionLoop<Black,TrConcat<TrCenterWipe<1000>,Red,TrCenterWipeIn<1000>>>,TrConcat<TrJoin<TrDelay<2000>,TrCenterWipe<2000>>,TransitionLoop<Black,TrConcat<TrCenterWipeIn<1000>,Red,TrCenterWipe<1000>>>,TrJoin<TrDelay<2000>,TrCenterWipeIn<1000>>,TransitionLoop<Black,TrConcat<TrCenterWipeIn<1000>,Red,TrCenterWipe<2000>>>,TrJoin<TrDelay<4000>,TrCenterWipeIn<2000>>>>>,
// On-Demand
OnDemandVolumeLevel,
OnDemandBatteryLevel
>>(),
You can see I also do it for volume level.