/How do you repeat special key combinations?

For example {Tab:4} repeats {Tab} 4 times:
{Tab}
{Tab}
{Tab}
{Tab}

What is the solution for repeating {Shift}({Tab}) 4 times:
{Shift}({Tab})
{Shift}({Tab})
{Shift}({Tab})
{Shift}({Tab})

Thank you!

Like

Thank you for your comment.
+ before a key means Shift (so +{TAB} = Shift+Tab), so the below will work

+{TAB}+{TAB}+{TAB}+{TAB}

Like