Assuming I understood your request correctly, you want to shift paramater 0 to parameter 1 of a certain effect.
Unfortunately, there is no native way to address the value of an effect parameter via expression.
It became common practice for me to keep track of effect parameters with object variables. Same goes for object's colors.
To shift parameters, you can use a local variable in the event sheet.
So for example, you have a sprite and want to switch it's red and green color components.
Create 3 variables on the sprite (all numbers):
R
G
B
Then, in the event sheet, try something like this:
Every tick: Sprite: Set color to rgb(self.R,self.G,self.B)
Every 1 seconds:
Local variable "buffer"
Set buffer to sprite.G
Set sprite.G to sprite.R
Set sprite.R to buffer